0
problem with mysql

/t5/dreamweaver-discussions/problem-with-mysql/td-p/119374
Nov 12, 2008
Nov 12, 2008
Copy link to clipboard
Copied
When I preview my page I receive this massage:
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource
My web page: www.justiciadedios.com/newSite/index.php
how can I fix it
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource
My web page: www.justiciadedios.com/newSite/index.php
how can I fix it
TOPICS
Server side applications
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
LATEST
/t5/dreamweaver-discussions/problem-with-mysql/m-p/119375#M165596
Nov 12, 2008
Nov 12, 2008
Copy link to clipboard
Copied
jesurum wrote:
> When I preview my page I receive this massage:
> Warning: mysql_free_result(): supplied argument is not a valid MySQL result
> resource
>
> My web page: www.justiciadedios.com/newSite/index.php
PHP is a server-side language, and all the PHP remains on the server. So
providing a URL to a live web page shows nothing of your PHP code.
I suspect that you had a recordset on the page, but deleted it manually,
rather than through the Server Behaviors panel. As a result, the
mysql_free_result() code was left at the bottom of the page (below the
closing html tag), generating the error.
--
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
> When I preview my page I receive this massage:
> Warning: mysql_free_result(): supplied argument is not a valid MySQL result
> resource
>
> My web page: www.justiciadedios.com/newSite/index.php
PHP is a server-side language, and all the PHP remains on the server. So
providing a URL to a live web page shows nothing of your PHP code.
I suspect that you had a recordset on the page, but deleted it manually,
rather than through the Server Behaviors panel. As a result, the
mysql_free_result() code was left at the bottom of the page (below the
closing html tag), generating the error.
--
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

