agath01 Posted May 9, 2009 Report Share Posted May 9, 2009 I am creating a table for my_music everything is working except for the confirmation screen. Please Help! Below are the files I am using, I think the confirmation should load in the add_record.php.Week4__4_.zip Quote Link to comment Share on other sites More sharing options...
BananaAcid Posted June 9, 2009 Report Share Posted June 9, 2009 for any1: How do i find out, why my scripts do not work: - define the doctype- close all html tags : <li></li>, <br />, <img />- do not use so many files group similar stuff/use PHP/includes - use '<a href="myfile.php?dostep=2">Step2</a>' for example, access by if (!empty($_GET['dostep']) { switch ($_GET['dostep']) {case 2: echo "step 2"; break; }});- check for errors: validate at http://validator.w3.org/ to see if you use valid html!- enable ALL PHP error displaying for debuging, add at the beginning of your script: <?php error_reporting(E_ALL); ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.