Search results

  1. D

    PHP drop down problem.. Help!!!?

    I need a PHP code for a text box, submit button, drop down box and delete button. If I press submit button, it will get for the text box's value and add into the drop down box.. If I press delete, the value inside the list box will be deleted.. Please help!! I'm still a newbie and in need of...
  2. D

    What PHP code should I add in here to determine if the user who logged is an admin...

    ...or not? I'm still a newbie, I got this code from a tutorial in YouTube. <?php session_start(); $company = $_POST['company']; $password = $_POST['password']; if($company&&$password) { $connect = mysql_connect("localhost","root","") or die("Couldn't connect!"); mysql_select_db(phplogin) or die...
  3. D

    PHP session_start() problem?

    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\xampp\htdocs\login.php:6) in C:\xampp\htdocs\login.php on line 7 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already...
Back
Top