Search results

  1. C

    Plscan someone help me with this Php scripts :?

    $user_name = "xxxx"; $password = "xxx"; $database = "xxxx"; $server = "localhost"; $db_handle = mysql_connect($server, $user_name, $password); $db_found = mysql_select_db($database, $db_handle); $qNum = 'q1'; $SQL = "SELECT * FROM tblquestions WHERE QID = '$qNum'" or die(mysql_error())...
  2. C

    i created a webpage and also a php page.i want to display the php page in

    my webpage in a table.I inserted the? code below but when i preview the page,i cant see the poll.php displaying .how can i do this correctly <tr> <td height="63" valign="top"><?php include("poll.php"); ?></td> </tr>
Back
Top