Aunque ya es muy tarde para decir esto, pero no por spam agradezco el aporte me funciono demasiado.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
$DBHost="localhost";
$DBUser="root";
$DBPass="root";
$DBName="shalombd";
class flexibleAccess {
/*Propiedades*/
var $dbName = 'shalombd';
var $dbHost = 'localhost';
var $dbPort = 3306;
var $dbUser = 'root';
var $dbPass = 'root';
var $dbTable = 'ushers';
echo '<FORM name="form" id="form" method="POST" action="nota.php"><td><input type=text value='.$no1f.' name="prueba1" size=1 '.$dis1.'></td>';
echo '<input type="hidden" value='.$no1f.' name="nota1"> ';
echo '<td><input type=text value='.$no2f.' name="prueba2" size=1 '.$dis2.'></td>';
echo '<input type="hidden" value='.$no2f.' name="nota2"> ';
echo '<td><input type=text value='.$no3f.' name="prueba3" size=1 '.$dis3.'></td>';
echo '<input type="hidden" value='.$no3f.' name="nota3"> ';
echo '<td><input type=text value='.$no4f.' name="prueba4" size=1 '.$dis4.'></td>';
echo '<input type="hidden" value='.$no4f.' name="nota4"> ';
echo '<td><input type=text value=0 id="nes" size=2 disabled></td>';
echo '<td><input type=submit value="enviar" name="enviar"></td></FORM>';
<FORM name="form" id="form" method="POST" action="nota.php">
<?php
$query12= "SELECT * FROM nota where Id_mate = $grado" or die ;
$resultado12 = $handle->query($query12);
while($row = $resultado12->fetch_array(MYSQLI_ASSOC))
{
$ids = $row['Id_usu_estu'];
$no1 = $row['Nota1_not'];
$no2 = $row['Nota2_not'];
$no3 = $row['Nota3_not'];
$no4 = $row['Nota4_not'];
$query13= "SELECT * FROM terceros where Id_usu = $ids" or die ;
$resultado13 = $handle->query($query13);
echo '<tr>';
while($row = $resultado13->fetch_array(MYSQLI_ASSOC))
{
$dis1='';
$dis2='';
$dis3='';
$dis4='';
if($no1>0)
{
$no1f = $no1 ;
$dis1 = disabled;
}
else if($no1==NULL)
{
$no1f = NR ;
}
else if($no1==0)
{
$no1f = $no1 ;
$dis1 = disabled;
}
else
{
$no1f = NR;
}
$nom1 = $row['Nombre1_usu'];
$Ape1 = $row['Apellido1_usu'];
echo '<td>',$ids,'</td>','<td>',$nom1,' ', $Ape1,'</td>';
echo '<td><input type=text value='.$no1f.' name="prueba" size=1 '.$dis1.' ></td>';
$not1ff = $no1f;
$_SESSION['variable'] = $not1ff;
echo '<td><input type=text value='.$no2f.' id="naja1" size=1 '.$dis2.'></td>';
$not2ff = $no2f;
$_SESSION['variable2'] = $not2ff;
echo '<td><input type=text value='.$no3f.' id="naja2" size=1 '.$dis3.'></td>';
echo '<td><input type=text value='.$no4f.' id="naja3" size=1 '.$dis4.'></td>';
echo '<td><input type=text value=0 id="nes" size=2 disabled></td>';
echo '<td><input type=submit value="enviar" name="enviar"></td>';
}
echo '</tr>';
}?>
</FORM>
$handle = db_connect();
$grado=$_POST[$grado];
echo $no1 = $_GET['prueba'];
echo $no1 = $_POST['prueba'];
echo $no1 = $_REQUEST['prueba'];
echo $no1 = $_GET[$no1f];
echo $no1 = $_POST[$no1f];
echo $no1 = $_REQUEST[$no1f];
echo $no1 = $_GET['$no1f'];
echo $no1 = $_POST['$no1f'];
echo $no1 = $_REQUEST['$no1f'];
echo $_SESSION['variable2'];
private void calcularJButtonActionPerformed( ActionEvent event ){
try{
int i = Integer.parseInt(numero.getText())-2;
for(int j=i;j>0;j--){
if(!(j%2==0)){
total.setText("Primo Menor: "+j);
break;
}
if( j % 2 == 0)
{
j++;
total.setText("Primo Menor del Par: "+ j);
break;
}
}
}
catch(Exception e){
JOptionPane.showMessageDialog(null, "Ingrese un valor numerico", "Valor Numerico No encontrado", JOptionPane.ERROR_MESSAGE);
}
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Main extends JFrame
{
private JLabel total, primo;
private JTextField numero;
private JButton calcular;
//constructor sin argumentos
public Main()
{
crearInterfazdeUsuario();
}
//
public void crearInterfazdeUsuario()
{
Container contentPane = getContentPane();
contentPane.setLayout( null );
primo = new JLabel();
primo.setText("Numero:");
primo.setBounds(05, 25, 91, 21);
contentPane.add(primo);
numero = new JTextField();
numero.setBounds(62, 28, 70, 20);
numero.setHorizontalAlignment(
JTextField.RIGHT);
contentPane.add(numero);
total = new JLabel();
total.setBounds( 45, 115, 500, 21 );
contentPane.add(total);
calcular = new JButton();
calcular.setText( "Calcular" );
calcular.setBounds( 45, 75, 94, 24 );
contentPane.add( calcular );
calcular.addActionListener(
new ActionListener() //
{
public void actionPerformed( ActionEvent event )
{
calcularJButtonActionPerformed( event );
}
}
); //
setTitle( "Primos ?" ); //
setSize( 200, 200 ); //
setVisible( true ); //
} //
private void calcularJButtonActionPerformed( ActionEvent event )
{
try
{
int i = Integer.parseInt(numero.getText());
int c;
String result = "";
for(c = 2; c < i ; c++)
{
if( i % c == 0)
{
result = i + " No es primo.";
i--;
if ( c == i/2)
{
result = i + " Primo Menor.";
}
//break;
}
if(c == i/2)
{
result = i + " Es primo.";
i--;
if ( c == i/2)
{
result = i + " Primo Menor.";
}
//break;
}
}
total.setText(result);
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, "Ingrese un valor numerico", "Valor Numerico No encontrado", JOptionPane.ERROR_MESSAGE);
}
}
public static void main( String[] args )
{
Main application = new Main();
application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
}
}