Re: Query with PHP and MySql [message #182266 is a reply to message #182262] |
Fri, 26 July 2013 11:00 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 7/26/2013 2:06 AM, Manju Bishnoi wrote:
> Hi all,
> I am using Wamp server with the package of Mysql, apache and PHP.. The problem i am facing is that i am unable to load more of data from FrontEnd(PHP) to Backend(MySql). Like i created 20 tables in one go in MySql and i connected all the tables with each other. And then i entered data into the form but it is not entering into the database. Values are directly inserting from database itself but is not working for frontend. And its not a problem of writing the wrong code, that i checked. The problem is occuring because in 1 database various tables are there otherwise it is working for small databases.Can anyone please help me to solve this problem. I also wanted to know that it is a proble in MySql or PHP. Please do reply as soon as possible.
>
> Thank you
>
> Regards:
> Manju Bishnoi
>
You have one of two problems. Your PHP is wrong, or your SQL is wrong.
But you haven't given us anything to go on.
Turn on error messages and display them (for debugging purposes). In
your php.ini file, put:
error_reporting = E_ALL
display_errors=on
Ensure you are checking the return value of ALL MySQL calls to see that
they functioned correctly.
If all else fails, post the failing code (if it's long, cut it down to
the minimum necessary to recreate the problem) here.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|