Re: [PHP-DB] More than 50 entries!!!

2009-07-10 Thread Zareef Ahmed
On Sat, Jul 11, 2009 at 5:51 AM, Zareef Ahmed wrote: > > > On Fri, Jul 10, 2009 at 3:03 PM, kranthi wrote: > >> because 2,3,4 tables have one to many corespondence. (at least 4 table >> does) >> > > Every heard about SQL joins? > I was just purposing a r

Re: [PHP-DB] More than 50 entries!!!

2009-07-10 Thread Zareef Ahmed
On Fri, Jul 10, 2009 at 3:03 PM, kranthi wrote: > because 2,3,4 tables have one to many corespondence. (at least 4 table > does) > Every heard about SQL joins? -- Zareef Ahmed :: A PHP Developer in India ( Delhi ) Homepage :: http://www.zareef.net

Re: [PHP-DB] Random Character String

2005-03-05 Thread Zareef Ahmed
be indexed that my > PHP scripts are creating. Is there a tag you know of to prevent this from > happening? what do you mean by indexed here? indexed by whom? search engines? zareef ahmed > > Ron > > -- > PHP Database Mailing List (http://www.php.net/) > To unsubscribe,

Re: [PHP-DB] how to set submit.

2004-12-28 Thread Zareef Ahmed
HI, Plesase search for post in last some days this issue has been discussed several time in the list. BTW double check the name of form submit button and register_global position. zareef ahmed >On Mon, 27 Dec 2004 04:45:58 -0800 (PST), amol patil <[EMAIL PROTECTED]> wrote

Re: [PHP-DB] Undefined indicies

2004-12-26 Thread Zareef Ahmed
do_something; > Personally I prefer the use of isset(), as it make sure that value is set before doing any type of operation on it. using @ is a dangerous practice as it just hide the errors. And yes error reporting ought to be E_ALL in development environment. zareef ahm

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
On Sat, 25 Dec 2004 17:27:18 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > On Saturday 25 December 2004 17:07, Zareef Ahmed wrote: > > On Sat, 25 Dec 2004 16:41:40 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > > > On Saturday 25 December 2004 16:32, Zareef Ahme

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
On Sat, 25 Dec 2004 16:41:40 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > On Saturday 25 December 2004 16:32, Zareef Ahmed wrote: > > > $header="from:[EMAIL PROTECTED] \n\r\n\r"; > > The newlines should be \r\n and not \n\r. Does it really make a diffrence? z

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
Please remove url bankdrt.com from example. it was included accidently. zareef ahmed On Sat, 25 Dec 2004 14:02:58 +0530, Zareef Ahmed <[EMAIL PROTECTED]> wrote: > Hi, > > A simple example of the code. It send email and when it sends email > it does not display the original

Re: [PHP-DB] how to connect new html page in PHP.

2004-12-25 Thread Zareef Ahmed
Hi, A simple example of the code. It send email and when it sends email it does not display the original form. Please note the use of isset() and submit button name use. zareef ahmed Test Again"; }else { echo "Mail function fail"; } } else { ?> To :: Su

RE: [PHP-DB] Importing Excel and Access data to MySQL

2004-10-07 Thread Zareef Ahmed
for previous posts in the list. This topic discussed several times in the list. Googling also can help you. Zareef Ahmed = Zareef Ahmed :: A PHP Developer in Delhi ( India ) Homepage :: http://www.zasaifi.com --- Outgoing mail is certified Virus

Re: [PHP-DB] error form check box and database

2004-09-08 Thread zareef ahmed
$db_pass, $db_host > // for connection. > > // Enter your database host name here. > $db_host = \"localhost\"; why you need \ in this line. \ is an escaping charactor for strings , there is no need of using this you should declare any variable just as $db_host="localhost&qu

Re: [PHP-DB] Building A Web Site Search Engine Using PHP / mySQL

2004-09-07 Thread zareef ahmed
Hi, http://www.zend.com/php5/casestudies/php5-orase.php You may have some lead. zareef ahmed --- Ron Piggott <[EMAIL PROTECTED]> wrote: > I wanted to also ask about how you would build a web > site search engine with > php and mySQL. > > I had thought of setting

Re: [PHP-DB] error on count()

2004-09-07 Thread zareef ahmed
on because $pisao is the array of return fields in the particular row. you should use mysql_num_rows($pss). no need of mysql_fetch_array() just return mysql_num_rows{$pss) after executing query. Third , I think it is best to use sensible variable

Re: [PHP-DB] functions via event handlers

2004-09-06 Thread zareef ahmed
Hi, A small example function call_me() { window.location="script.php"; } click me If you are thinking about some live experience like javascirpt with PHP you can go for flash and php. In Flash Event calls php scripts and get the value without reloading the flash movie. Za

[PHP-DB] Re: Name searches for the spelling impaired

2004-09-06 Thread Zareef Ahmed
HI , Following php functions may be usefull http://www.php.net/soundex http://www.php.net/similar_text Just try to make good algoritham ;) Zareef Ahmed "Pete Holsberg" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is there a way to program MySQL so t

Re: [PHP-DB] Re: chmod

2004-09-04 Thread zareef ahmed
back with any problem ;) zareef ahmed --- Torsten Roehr <[EMAIL PROTECTED]> wrote: > <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Dear friends, > > > > In "quiz" there is a dir called "saved" and chmod

Re: [PHP-DB] php mysql dates

2004-07-28 Thread zareef ahmed
without any problem. zareef ahmed --- Irm Jr <[EMAIL PROTECTED]> wrote: > > Hi all, currently I have a form which prompts for > the user to choose a > date. The dropdown lists are stored into variables: > > $month//e.g. January, February, ... > $day

Re: [PHP-DB] What's wrong with this QUERY??

2004-07-22 Thread zareef ahmed
t;SELECT id, email, familyname FROM members WHERE email='$thing'"; It should work zareef ahmed > $result = mysql_query($query); > > If i do a query where id=$thing. > and $thing="20"; > this works fine and I get the desired result. But > what is wron

Re: [PHP-DB] PHP Max execution time

2004-07-15 Thread zareef ahmed
Hi, You can use set_time_limit(0) to disable max execution time limit. You can set it to more than 30 seconds too. ini_set("max_execution_time","300"); will also work. zareef ahmed --- Lisi <[EMAIL PROTECTED]> wrote: > I am running a script (called through a brow

Re: [PHP-DB] Re: MySQL query, using DISTINCT...

2004-07-06 Thread zareef ahmed
Hi, using "group by" can also be usefull. zareef ahmed --- Torsten Roehr <[EMAIL PROTECTED]> wrote: > "Tristan Pretty" <[EMAIL PROTECTED]> > wrote in message > news:[EMAIL PROTECTED] > com... > > I have a system that tracks downloads, cap

RE: [PHP-DB] Dates and Count

2004-07-05 Thread zareef ahmed
Hi, $query="select * from clients where date between $date1 AND $date2"; zareef ahmed --- Shannon Doyle <[EMAIL PROTECTED]> wrote: > > Hi Pablo, > > Its exactly what I wanted. Thanks. > > I now have an additional question. > > I need to show re

Re: [PHP-DB] cookie issue

2004-07-01 Thread zareef ahmed
ation :somewhere"); setcookie("name",$user_name, $time+3600); I hope this should work. Please let me know the status as I am also getting interest in it. BTW I prefer session to cookies... Zareef Ahmed --- Sukanto Kho <[EMAIL PROTECTED]> wrote: > Hi Mr. Zareef, >

Re: [PHP-DB] How to take Backup ?

2004-07-01 Thread zareef ahmed
Hi, If you have phpmyadmin on your system you can export all your data in sql format which can be restore again by running that sql script. make sure to check complete insert checkbox at time of export operations. Revert Back with any comment or problem. Zareef Ahmed --- Rinku <[EM

Re: [PHP-DB] cookie issue

2004-07-01 Thread zareef ahmed
gt; before...but still havent get any suggestion. No Problem. You are welcome. Zareef Ahmed > > Thanx > Flame > = Zareef Ahmed :: A PHP Developer in Delhi(India). Homepage :: http://www.zasaifi.com __ Do yo