PHP white screen of death every time. What am I doing wrong?

前端 未结 5 422
傲寒
傲寒 2021-01-26 08:44

I\'m a complete noob to PHP and working with mysql so you know I do however have a great deal of experience with HMTL and CSS. All I need is for a form on my site to upload the

5条回答
  •  面向向阳花
    2021-01-26 09:32

    first of all

    $_POST[firstname] should be $_POST['firstname']
    

    third

    mysql_query($sql,$conn);
    

    second

    $conn=mysql_connect(your parameters);
    

提交回复
热议问题