RE: [PHP-DB] php problem

2005-01-06 Thread Tyler Replogle
whats the php info? From: Serenity Schindler <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: [PHP-DB] php problem Date: Thu, 6 Jan 2005 05:00:32 -0800 (PST) MIME-Version: 1.0 Received: from lists.php.net ([216.92.131.4]) by mc10-f30.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 6 Ja

RE: [PHP-DB] php problem

2005-01-06 Thread Norland, Martin
> -Original Message- > From: Jochem Maas [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 06, 2005 7:13 AM > Subject: Re: [PHP-DB] php problem > > if so then PHP is not either: > > 1. your webserver is not configured to use php to handle files with a

Re: [PHP-DB] php problem

2005-01-06 Thread Jochem Maas
Serenity Schindler wrote: I am new to php and have no idea what I'm doing wrong. I have a file named test.php containing: PHP Test This is an HTML line echo "This is a PHP line"; phpinfo(); ?> The html lines show up just fine but none of the php info is displayed. Any ideas? doe

Re: [PHP-DB] PHP Problem, Special String Character...please help

2004-01-14 Thread Olwen Williams
If you are sending this as a query string to another page you want rawurlencode or urlencode rather than htmlspecialchars brett king wrote: Try using HTMLSPECIALCHAR() function. $title = htmlspecialhtml($title); -- Olwen Williams See my B&B site http://www.bandbclub.com and my new site http://ww

Re: [PHP-DB] PHP Problem, Special String Character...please help

2004-01-14 Thread Muhammed Mamedov
You can encode string before sending it out. Try htmlspecialchars($str, ENT_QUOTES).. before sending string - from PHP manual: The translations performed are: a.. '&' (ampersand) becomes '&' b.. '"' (double quote) becomes '"' when ENT_NOQUOTES is not set. c.. ''' (sin

RE: [PHP-DB] PHP Problem, Special String Character...please help

2004-01-14 Thread Ferry CS
I already received your help... I really loved it... Thanks very much all... I will try it... _ The new MSN 8: advanced junk mail protection and 2 months FREE* http://join.msn.com/?page=features/junkmail -- PHP Database Mailing List

RE: [PHP-DB] PHP Problem, Special String Character...please help

2004-01-14 Thread brett king
Try using HTMLSPECIALCHAR() function. $title = htmlspecialhtml($title); -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] PHP Problem, Special String Character...please help

2004-01-14 Thread Toby Irmer
> I have problem with manipulating the string... > How to send the string with special character > included to the other pages... Take a look at this http://de2.php.net/urlencode http://de2.php.net/urldecode hth toby -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP-DB] PHP problem

2003-11-24 Thread Kim Steinhaug
4 words! i dont believe you! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- "Unknown S

Re: [PHP-DB] PHP Problem

2003-06-06 Thread Becoming Digital
Please post the code you are trying to use so that we can try to find the problem. Without data, we can't tell you where things went wrong. Edward Dudlik Becoming Digital www.becomingdigital.com - Original Message - From: "Ramesh PAtel " <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

RE: [PHP-DB] php problem passing variables

2002-07-10 Thread joakim . andersson
This doesn't look like a database question to me... Anyway, try $_POST['variable_name'] if the variable comes from a form with the POST-method $_GET['variable_name'] - Form using GET-method or passing variables in the URI (mypage.php?variable_name=42) Regards Joakim Andersson > -Original M

Re: [PHP-DB] PHP problem

2002-02-26 Thread Maarten Verheijen Mysql en PHP-maillijst
Dear Bartlomiej Pawlik, Try: LONG TEXT 1 LONG TEXT 2 LONG TEXT 3 Greetings, Maarten Verheijen - Original Message - From: "Bartek Pawlik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 11:11 AM Subject: [PHP-DB] PHP problem Sorry to be a little bit off

Re: [PHP-DB] PHP problem

2002-02-26 Thread George Pitcher
Bartek, This is snipped from a working form on my site: contains exact match begins with and it works. George - Original Message - From: "Bartek Pawlik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 10:49 AM Subject: Odp: [PHP-DB] PHP pro

Re: [PHP-DB] PHP problem

2002-02-26 Thread Joffrey van Wageningen
- Original Message - From: "Bartek Pawlik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 11:11 AM Subject: [PHP-DB] PHP problem > Sorry to be a little bit off topic > i have code that generates: > LONG TEXT 1 use: long text 1 mvgr, Joffrey van Wageningen

RE: [PHP-DB] PHP problem

2001-04-30 Thread Steve Brett
user something like this: the thing you're looking for is the SELECTED bit of the select drop down ... echo ''; $months = Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); for ($x=1; $x <= count($months); $x++)