[PHP-DB] Re: Help needed in searching a sentence in the code

2010-05-27 Thread Tanel Tammik
nagendra prasad nagendra802...@gmail.com wrote in message news:aanlktinesp1vyn3do_ubcax9ltlhf5yqduwe24iam...@mail.gmail.com... Hi All, I have this code where user can search a song or the entire song title. It looks like when a user search a single word its searching and giving the proper

[PHP-DB] Re: help needed.

2010-03-18 Thread Nadim Attari
Hello, Maybe these can help. Web Server on CD: http://ampstart.ly-le.info/ http://www.stunnix.com/ http://www.server2go-web.de/ http://www.indigostar.com/microweb.php PHP EXE Compiler/Embedder : http://www.bambalam.se/bamcompile/ p.s.: Make sure you encode your PHP codes before

Re: [PHP-DB] Re: help needed.

2010-03-18 Thread Gunawan Wibisono
flash? why not using xml.. is the data will be update? this good aplication i think On Thu, Mar 18, 2010 at 4:10 PM, Nadim Attari na...@alienworkers.comwrote: Hello, Maybe these can help. Web Server on CD: http://ampstart.ly-le.info/ http://www.stunnix.com/ http://www.server2go-web.de/

Re: [PHP-DB] Re: help needed.

2010-03-18 Thread Vinay Kannan
Yes, the data would be updated, I am not really good at XML, havnt had a chance to work with XML, so was trying to avoid it as much as I can, but I guess if it thats what it takes, then would have to sit down and start working on it now :) On Thu, Mar 18, 2010 at 8:11 AM, Gunawan Wibisono

[PHP-DB] Re: Help Needed with malfunctioning query

2006-02-26 Thread El Bekko
Chris Payne wrote: Hi there everyone, This line of code USED TO WORK but now it gives me a Coudln't Execute Query error: $query2 = SELECT word,def,photo MATCH(word,def) AGAINST ('$txtsearchword' IN BOOLEAN MODE) AS m FROM dictionary WHERE MATCH(word,def) AGAINST ('$txtsearchword' IN

[PHP-DB] Re: Help needed

2002-12-10 Thread Hugh Bothwell
Spiderwebb [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I dont know if this is possible in PHP (Newbie) im working on a project where each product has 3 diffierent prices depending on the amount sold so say for example 1- 100 price A 101-299 price B and above

[PHP-DB] Re: HELP NEEDED!

2002-07-13 Thread Mark McCulligh
Your _Name1 in your SELECT doesn't have a $ in front of it. $_query = select userName from users where userName = '$_Name1' ; or $_query = select userName from users where userName = '.$_Name1.' ; Also after you query your database you have to get the results from your select. $_result after

Re: [PHP-DB] Re: HELP NEEDED!

2002-07-13 Thread Adam Alkins
Use mysql_result or mysql_fetch_array to get your results. Example: $userName = mysql_reqult($result,0); Just use mysql_num_rows($result) and count the amount of rows selected. if(mysql_num_rows($result) == '0') { do_user_doesnt_exist_stuff(); } else { do_user_exists_stuff(); }

[PHP-DB] Re: HELP NEEDED

2002-07-13 Thread Adam Royle
First of all, you are not using the variable when you are passing it to the sql string. Second, you are doing a pointless var check, and thirdly, your condition statement is flawed. 1. SQL should be (if you have register globals turned on, otherwise you must use $_GET['_Name1'] ): $_query =

[PHP-DB] Re: Help needed - need to access a value from DB into all pages

2002-02-21 Thread Joe Van Meer
Hi there :) One of the most common methods of achieving this is by using session variables. First the user logins in through a form with a username and a password, you check these against the database to make sure they are who they say they are, once that is established you could create a

[PHP-DB] RE: HELP NEEDED! SELECT of Text Fields in MS SQL Server 7.0 Limitation

2001-12-26 Thread Niko Spyridonos
Yeap. That's what it was. In the PHP.INI file the directive mssql.textlimit and mssql.textsize were set to 4096 bytes. I just set them to maximum of 2147483647 and it works like a charm. Thanks for the tip. Niko Spyridonos Director of E-Business Services Chamerlik/CompuLogic