Date: 11/30/01
- Next message: sgibbs <email protected>: "[PHP] How to work with MySQL tables WITHOUT telnet, SSH or PhpMyAdmin"
- Previous message: Fred: "Re: [PHP] chown/chgrp not working"
- In reply to: chip.wiegand <email protected>: "[PHP] I'm getting frustrated with this."
- Next in thread: chip: "Re: [PHP] Re: I'm getting frustrated with this."
- Reply: chip: "Re: [PHP] Re: I'm getting frustrated with this."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
If you want to know exactly why mysql functions fail you should always, and
I do mean always, use this form:
$Result = mysql_query($Query, $Connection)
or die (mysql_error());
You will always get a fairly descriptive error from mysql. If you still do
not understand the error, at least you have more specific information for
this list.
Fred
Chip Wiegand <chip.wiegand <email protected>> wrote in message
news:OFB280BEED.C8AF60D9-ON88256B14.0067452D <email protected>
> Hi,
> I just want a simple page that pulls the data from a database (got that
> working fine, no problem),
> and on that page I want to be able to have an option to delete entries. I
> have tried what seems
> to be the simplest method - using a form text field, enter the appropriate
> info, and hit the submit
> button. It should then be deleted from the database. I can delete from the
> database on the
> command line, but getting it to work in php is another story. I keep
> getting 'not a valid mysql
> result resource' errors. I have 3 php/mysql books and cannot get this to
> work. I know it can't be
> as difficult as it appears.
> My goal is simple enough - I have a database that is populated from online
> web forms. It contains
> enduser names, addresses & email addresses. I made a form that the
> marketing people can use
> to view the database, search it and display it in various ways. I also
gave
> them a form that will
> allow them to manually add enduser info into the database. That all works
> fine. It's just the doggone
> delete stuff that I just haven't got a handle on yet.
> Is there a tutorial somewhere that shows the simplest method of setting
> this up? That's all I need,
> a reference to a location for a tutorial or info on this particular
> subject.
>
> Thanks,
> Chip
>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: sgibbs <email protected>: "[PHP] How to work with MySQL tables WITHOUT telnet, SSH or PhpMyAdmin"
- Previous message: Fred: "Re: [PHP] chown/chgrp not working"
- In reply to: chip.wiegand <email protected>: "[PHP] I'm getting frustrated with this."
- Next in thread: chip: "Re: [PHP] Re: I'm getting frustrated with this."
- Reply: chip: "Re: [PHP] Re: I'm getting frustrated with this."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

