PHP头条
热点:

新手,轻拍.大姐们帮小弟我看一上这段php代码有关问题出在哪


新手,轻拍. 各位大哥大姐们帮我看一下这段php代码问题出在哪
Html Code:






 Rep Num: 



 Rep Num: 
Last Name:  First Name: 
Street:  City:  
State:  Zip: 
Commission:  Rate: 



 Rep Num: 



 Rep Num: 
Last Name:  First Name: 
Street:  City:  
State:  Zip: 
Commission:  Rate: 







[/code]


PHP code:



Sales Rep Maintenance

// Address error handling

ini_set('display_errors',1);
error_reporting(E_ALL & ~E_NOTICE);

// Attempt to Connect

if ($connection = @mysql_connect ('localhost', '***', '***')){
print '

Successfully connected to MySQL.

';
//mysql_close(); // close the connection
}
else {
die('

Could not connect to MySQL because: ' .mysql_error() .
'

');
}
if (@mysql_select_db("PREMIERE", $connection)){
print '

The PREMIERE database has been selected.

';
}
else {
die('

Cound not select the PREMIERE database because: ' .mysql_error().'

');
}

if(!$_REQUEST['submit'])
{
generate_form();
}
else if($_REQUEST['submit'] == "Search")
{
search_rep();
}
else if($_REQUEST['submit'] == "Add")
{
add_rep();
}
else if($_REQUEST['submit'] == "Delete")
{
delete_rep();
}
else if($_REQUEST['submit'] == "Update")
{
update_rep();
}

function generate_form()

www.phpzy.comtrue/phprm/17427.htmlTechArticle新手,轻拍.大姐们帮小弟我看一上这段php代码有关问题出在哪 新手,轻拍. 各位大哥大姐们帮我看一下这段php代码问题出在哪 HtmlCode: RepNum: RepNum: LastName: FirstName: Street: City: State: Zip: Comm...

相关文章

PHP之友评论

今天推荐