@CreatorZeus
keep getting a "expects parameter 1 to be resource, boolean" error
This function doesn't work:
http://php.net/manual/en/function.mysql-query.php
You need to try mysqli_query() function
In the future used mysqli functions.
To solve your issue just add this
$result= mysql_query($sql,$con);
LastMitch
Industrious Poster
4,146 posts since Mar 2012
Reputation Points: 132
Solved Threads: 334
Skill Endorsements: 45
where do i add it?
I just gave you the code:
$result= mysql_query($sql,$con);
Just add
$con
to this:
$result= mysql_query($sql);
and you will get this:
$result= mysql_query($sql,$con);
LastMitch
Industrious Poster
4,146 posts since Mar 2012
Reputation Points: 132
Solved Threads: 334
Skill Endorsements: 45
Question Answered as of 2 Months Ago by
LastMitch