[wdvltalk] Re: php

2004-02-13 Thread Sheila Fenelon
Drew, Incorporating what the others have suggested, here's what you want: $Link= @mysql_connect($Host, $User, $Password) or die(mysql_error()); if ($Link) { echo "successfully connected"; } else { echo "connection failed. unable to continue."; exit; } // don't use id in the insert $Quer

[wdvltalk] Frames

2004-02-13 Thread Hoenig, Robert
I have a javascript calendar that when you click a date it populates a field without refresh. How could I put this into frames? I want the user to click the date in one frame and then the date will populate a text box in another frame. Is this even possible? Here is my code for the text box pop

[wdvltalk] Re: Wireless networking

2004-02-13 Thread Scott Glasgow
Don't know about the UK, but my ADSL provider (Cincinnati, OH, USA) is apparently agnostic with respect to CPE. They provide a Cisco 675, but you're free to go to Walmart or Radio Shack, or... and pick up anything that is compatible with their provisioning. I have friends who have bought various br

[wdvltalk] Wireless networking

2004-02-13 Thread Peter MacGregor
Following up on the help I got here re the above topic a week or so ago, if a Wireless ADSL Modem and Router such as is shown at http://www.dabs.com/uk/productview?quicklinx=2Z9M is used, can I be confident the modem will be compatible with the ISPs service? From what I can see in UK at least,

[wdvltalk] Re: HTML Emailing

2004-02-13 Thread Hoenig, Robert
Thanks for the help. I'll check out that site. Robert *-* Application Programmer x4863 -Original Message- From: Stephen Hutchinson [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 1:49 PM To: [EMAIL PROTECTED] Subject: [wdvltalk] Re: HTML Emailing Good p

[wdvltalk] Re: HTML Emailing

2004-02-13 Thread Stephen Hutchinson
Good place to start here. http://www.4guysfromrolla.com/webtech/faq/Email/faq2.shtml You need to build an html form that people enter details into and then send it to a page that collects the values and send them with CDONTS. If you follow the links from the above URL you will have no trouble s

[wdvltalk] Re: PWS is hideously slow

2004-02-13 Thread Scott Glasgow
I know this is going to sound odd, but how many fonts do you have installed? Installed anything recently that installs fonts? Not too long back, I installed Corel Draw, which installs a slew of fonts by default. After rebooting, I noticed that IE was displaying much slower. On a hunch, I checked my

[wdvltalk] Re: php

2004-02-13 Thread Uch Don
I think the message you are getting is that there is a good connection to the database server. I do not think you have yet inserted yet. Try $result = mysql_query($queryNo) or die("Invalid query: " . mysql_error()); somewhere before > $id= mysql_insert_id(); --- "Trusz, Andrew" <[EMAIL PROTEC

[wdvltalk] Re: php

2004-02-13 Thread Trusz, Andrew
You haven't sent the queries to MySQL. $Query = "Insert into $TableName (id, name, date) values ('', 'number three', '2004-12-02')"; $result = mysql_query($Query); if ($result) { $id= mysql_insert_id(); } else { echo "There was a problem with the query: $Query\n": } You'll need somethin

[wdvltalk] Re: php

2004-02-13 Thread Sheila Fenelon
[EMAIL PROTECTED] wrote: I get the “success” message and an id of 0 when it should be 3 and no data inserted in either table. You haven't sent the queries to MySQL. $Query = "Insert into $TableName (id, name, date) values ('', 'number three', '2004-12-02')"; $result = mysql_query($Query); if ($r

[wdvltalk] Re: php

2004-02-13 Thread Trusz, Andrew
No difference. The id and '' combination works fine in the mysql interface. My main question is: is the use of mysql_insert_id() correct? There may be a problem with the connection between the php and mysql on this machine. I'll try the code on one I know works later. But I wanted to know if the u

[wdvltalk] Re: php

2004-02-13 Thread Tristan . Pretty
$Query = "Insert into $TableName (id, name, date) values ('', 'number three', '2004-12-02')"; loose all references to id making... $Query = "Insert into $TableName (name, date) values ('number three', '2004-12-02')"; My first thought was that you're forcing a blank into the id field... Try

[wdvltalk] php

2004-02-13 Thread andrew . trusz
I’m trying to do multi-table insert using an auto incremented “id” from the main table (register) as the id in the second table (money). I can establish the connection to the database and I can insert into each table using the mysql command line. So the pieces fit. The script runs but nothing is a

[wdvltalk] Re: HTML Emailing

2004-02-13 Thread Hoenig, Robert
I'm using ASP. Sorry forgot to mention that. Robert *-* Application Programmer x4863 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 9:39 AM To: [EMAIL PROTECTED] Subject: [wdvltalk] Re: HTML Emailing Are you f

[wdvltalk] Re: HTML Emailing

2004-02-13 Thread Tristan . Pretty
Are you familiar with PHP, or ASP? They can help you... I can help you with PHP, if you like... I'm sure there's an ASP bod out there on this list.. "Hoenig, Robert" <[EMAIL PROTECTED]> 13/02/2004 15:29 Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject [wdvltalk] HTML Emai

[wdvltalk] RE: HTML Emailing

2004-02-13 Thread Erik Carlson
Are you wanting e-mail's to be sent after a web based form it filled out? Thank you for choosing http://ComputerPerceptions.com -Original Message- From: Hoenig, Robert [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 9:29 AM To: [EMAIL PROTECTED] Subject: [wdvltalk] HTML Emaili

[wdvltalk] HTML Emailing

2004-02-13 Thread Hoenig, Robert
Can someone point me to a site that can help in creating an HTML email from a web page. I have some forms online that when the user submits them I want an email to go to their manager and in the email I would like to have some buttons that they can click and the email is sent to another person. C