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

Linux, Apache, MySQL, PHP

 
GeneralRe: add and show events on a calender in php/msql problem Pin
Graham Breach5-Apr-11 0:16
Graham Breach5-Apr-11 0:16 
GeneralRe: add and show events on a calender in php/msql problem Pin
tryingmybest896-Apr-11 12:31
tryingmybest896-Apr-11 12:31 
GeneralRe: add and show events on a calender in php/msql problem Pin
Mutinda Boniface15-Apr-11 3:53
Mutinda Boniface15-Apr-11 3:53 
QuestionHow to know if a variable has been initiated or not [modified] Pin
Joan M30-Mar-11 7:56
professionalJoan M30-Mar-11 7:56 
AnswerRe: How to know if a variable has been initiated or not Pin
nickmaroulis30-Mar-11 13:35
nickmaroulis30-Mar-11 13:35 
GeneralRe: How to know if a variable has been initiated or not Pin
Joan M30-Mar-11 20:25
professionalJoan M30-Mar-11 20:25 
GeneralRe: How to know if a variable has been initiated or not Pin
nickmaroulis30-Mar-11 21:03
nickmaroulis30-Mar-11 21:03 
GeneralRe: How to know if a variable has been initiated or not Pin
nickmaroulis30-Mar-11 21:18
nickmaroulis30-Mar-11 21:18 
GeneralRe: How to know if a variable has been initiated or not Pin
Joan M30-Mar-11 21:41
professionalJoan M30-Mar-11 21:41 
GeneralRe: How to know if a variable has been initiated or not Pin
User 171649230-Mar-11 22:28
professionalUser 171649230-Mar-11 22:28 
GeneralRe: How to know if a variable has been initiated or not Pin
Joan M30-Mar-11 22:51
professionalJoan M30-Mar-11 22:51 
QuestionProblem with pointers / permissions? Pin
whatsa25-Mar-11 10:15
whatsa25-Mar-11 10:15 
AnswerRe: Problem with pointers / permissions? Pin
cjoki25-Mar-11 13:31
cjoki25-Mar-11 13:31 
AnswerRe: Problem with pointers / permissions? Pin
effayqueue25-Mar-11 23:50
effayqueue25-Mar-11 23:50 
AnswerRe: Problem with pointers / permissions? Pin
nickmaroulis30-Mar-11 13:38
nickmaroulis30-Mar-11 13:38 
Questionhow to bypass web filter Pin
yftah198923-Mar-11 7:12
yftah198923-Mar-11 7:12 
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 

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.