Click here to Skip to main content
15,881,092 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
AnswerCross Post: Please Ingore Pin
Keith Barrow23-Mar-11 8:48
professionalKeith Barrow23-Mar-11 8:48 
GeneralRe: Cross Post: Please Ingore Pin
Pete O'Hanlon23-Mar-11 9:21
mvePete O'Hanlon23-Mar-11 9:21 
GeneralRe: Cross Post: Please Ingore Pin
Keith Barrow23-Mar-11 9:44
professionalKeith Barrow23-Mar-11 9:44 
Questionsend data Pin
Elham M23-Mar-11 3:19
Elham M23-Mar-11 3:19 
AnswerRe: send data Pin
cjoki23-Mar-11 4:32
cjoki23-Mar-11 4:32 
GeneralRe: send data Pin
Elham M24-Mar-11 3:14
Elham M24-Mar-11 3:14 
GeneralRe: send data Pin
cjoki24-Mar-11 4:55
cjoki24-Mar-11 4:55 
GeneralRe: send data Pin
Elham M24-Mar-11 22:17
Elham M24-Mar-11 22:17 
$_POST and $_GET just for input type but my variable isn't that.this is my code I want when user click on button insert data to database but I can't access to variable
$row[lsname],$row[teachername],...even this page and other page?another my question is why variable like$_POST[t] isn't recognaize in function?!!!even I write global
$_POST[t] but it's error
<?php

 session_start();
 echo ($_SESSION[users]);
echo "$_POST[t]";
?>
<html>


 <form method="post" action="reqire.php">
<?php
 require_once ('db.php');
$db = new db("root","","regstudent","localhost");
 function aa()
 {

     require_once ('db.php');
$db = new db("root","","regstudent","localhost");
$db->query("INSERT INTO register(`user`, `lsname`, `teachername`, `classday`, `starttime`, `endtime`, `examtime`)VALUES('$_SESSION[user]','$row[lsname]','$row[teachername]','$row[classday]','$row[starttime]','$row[endtime]','$row[examtime]') ");

echo "one record added";
 }
  echo "<table border='4' bordercolor='CC0099' width=100% height=20% >";
  echo "<tr><th>Name</th><th>Professor</th><th>Capacity</th><th>Exam</th><th     colspan='3'>classtime</th></tr>";
   $result = mysql_query("SELECT * FROM class");
    while($row = mysql_fetch_assoc($result))
    {
    if($_POST[t]==$row[lsname])
  {
        foreach($row as $key=>$var2)
     {
       echo "<td align='center'>$var2 </td>";
     }
    echo "<td align='center'><input type='submit'  value='Register' onclick='aa()'></td> ";


    }

      echo "</tr>";
    }
   echo"</table>";

?>
</form>
</html>

please help me I mystify in my project :( 

GeneralRe: send data Pin
effayqueue25-Mar-11 1:25
effayqueue25-Mar-11 1:25 
GeneralRe: send data Pin
cjoki25-Mar-11 2:52
cjoki25-Mar-11 2:52 
GeneralRe: send data Pin
Elham M25-Mar-11 3:15
Elham M25-Mar-11 3:15 
GeneralRe: send data Pin
cjoki25-Mar-11 3:32
cjoki25-Mar-11 3:32 
GeneralRe: send data Pin
Elham M25-Mar-11 7:05
Elham M25-Mar-11 7:05 
GeneralRe: send data Pin
cjoki25-Mar-11 10:02
cjoki25-Mar-11 10:02 
GeneralRe: send data Pin
Elham M25-Mar-11 21:17
Elham M25-Mar-11 21:17 
GeneralRemove a File Using PHP Pin
Haroon Mughal23-Mar-11 2:35
Haroon Mughal23-Mar-11 2:35 
GeneralRe: Remove a File Using PHP Pin
Joan M30-Mar-11 7:48
professionalJoan M30-Mar-11 7:48 
GeneralPHP Tips By Google Master Pin
Haroon Mughal23-Mar-11 2:33
Haroon Mughal23-Mar-11 2:33 
GeneralPHP performance tips Pin
Haroon Mughal23-Mar-11 2:32
Haroon Mughal23-Mar-11 2:32 
Questioncss and link styles Pin
Joan M22-Mar-11 4:59
professionalJoan M22-Mar-11 4:59 
AnswerRe: css and link styles Pin
Luc Pattyn22-Mar-11 5:25
sitebuilderLuc Pattyn22-Mar-11 5:25 
QuestionWhy do images are not shown? Pin
Joan M21-Mar-11 5:43
professionalJoan M21-Mar-11 5:43 
AnswerRe: Why do images are not shown? Pin
Luc Pattyn21-Mar-11 5:50
sitebuilderLuc Pattyn21-Mar-11 5:50 
GeneralRe: Why do images are not shown? Pin
Joan M21-Mar-11 6:10
professionalJoan M21-Mar-11 6:10 
GeneralRe: Why do images are not shown? Pin
Luc Pattyn21-Mar-11 6:22
sitebuilderLuc Pattyn21-Mar-11 6:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.