Re: [PHP-DB] Re: Free shopping cart

2002-10-21 Thread J-E-N
try to find it here http://www.hotscripts.com/ -jen - Original Message - From: Tjoumaidis Anastasios [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 21, 2002 2:54 PM Subject: [PHP-DB] Re: Free shopping cart Tony S. Wu wrote: I need to write a shopping cart for

[PHP-DB] problem in parsing

2002-08-09 Thread J-E-N
if i have the following script, $exp = description=whatever\namount=23.50\nquantity=2\n; if (eregi((amount)(.*)(\n), $exp,$amt)) { print $amt[0]; } the output will be namount=23.50\nquantity=2\n what will i do so that the output value will be 23.50 only. thanks =) jen

[PHP-DB] mass insert to database

2002-02-03 Thread J-E-N
hello all, i'm trying to make a script where i can do a mass insert to database (4,000 entries) and then send confirmation email to each of the entry's email address stating that their record has been inserted to database. My problem is, when i use a while loop the page time-out on the 300th

[PHP-DB] https

2001-10-20 Thread J-E-N
hello, how can i switch from http to https without typing the whole url? thanks

[PHP-DB] sessionid

2001-09-11 Thread J-E-N
hello! i have a script below, my question is, will there be a chance that i will get thesame $sessionid. if (!$sessionid) { $sessionid = md5(uniqid(rand())); SetCookie(sessionid,$sessionid,time()+1314000); }

[PHP-DB] variables

2001-08-22 Thread J-E-N
Hello there. Is there a way to know whether a variable was passed by a form or just typed from the address bar?

[PHP-DB] interbase or postgres

2001-08-17 Thread J-E-N
just want to here comments from you guys. i will be doing a shopping cart and i'm still looking for the best database which i could use aside from Oracle.i'm still thingking which is better. interbase or postgres?

[PHP-DB] blinking background

2001-08-09 Thread J- E- N
hello! is there anyone who can give me an idea on how i can write a php script that can make my table row background blinking. thanks :) -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP-DB] blinking background

2001-08-09 Thread J- E- N
i just want to catch the attention of the user and the blinking effect of the table row is not forever, it will stop after a certain time. :) - Original Message - From: Russ Michell [EMAIL PROTECTED] To: J- E- N [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 6

[PHP-DB] search database

2001-07-25 Thread J- E- N
can you suggest how to do a database search aside from using like in my query string. thanks a lot -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail:

[PHP-DB] search form

2001-07-24 Thread J- E- N
hello everyone, i have a search form and i want it to search the entire site. what will i do if not all the information in my site came from the database ... thanks