RE: [PHP-WIN] New to PHP

2003-01-06 Thread Asendorf, John
Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Nullum magnum ingenium sine mixtura dementiae fuit > -Original Message- > From: Palli [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 06, 2003 3:53 PM > To: [EMAIL PROTECTED] >

RE: [PHP-WIN] New to PHP

2003-01-06 Thread Mikey
nt: 06 January 2003 20:53 > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] New to PHP > > > Hello > > Im new to PHP and I have a little problem. > It seems that I always get a blank value from a query string. > > This is my code > > BLA    > > and this is login.

[PHP-WIN] New to PHP

2003-01-06 Thread Palli
Hello Im new to PHP and I have a little problem. It seems that I always get a blank value from a query string. This is my code BLA    and this is login.php but the $Action is always empty. ps. I´ve tried to change the variable

Re: [PHP-WIN] New to PHP Need Help

2002-04-04 Thread Piotr Pluciennik
Hi, mysql_fetch_row($result) function output is an array - so it's not strange that your script produces such output. Read the manual for detailed explanation of this function and how to handle the result set. You should also know name of the field you want to retrieve from db - in SQL query you

Re: [PHP-WIN] New to PHP Need Help

2002-04-04 Thread Mike Flynn
mysql_fetch_row() returns an associative array containing all columns retrieved from the database. You can't echo an array directly. In the associative array, the keys are the column names from the table, the values are the values you retrieved in that row. So you could do this to see what y

[PHP-WIN] New to PHP Need Help

2002-04-04 Thread Jason Tobias
I am trying to define variables through an anchor tag to retrive data from MySQL, When the script runs it displays Array. I am running WIN2K and IIS 5 echo "Camp Street Cafe"; Here is the script that is called. $Location_Info"; ?> -- PHP Windows Mailing List (http://www.php.net/) To u

Re: [PHP-WIN] new to PHP...have some questions

2002-04-03 Thread Rasmus Lerdorf
foreach($_POST as $name=>$value) $$name = $value; On Wed, 3 Apr 2002, Matt Babineau wrote: > I have been playing with the $_POST variable > > how would I go about looping over the $_POST variable to retrieve the > variable and values? > > I can do this: > > <% > > if (count($_POST) > 0) { > /*s

[PHP-WIN] new to PHP...have some questions

2002-04-03 Thread Matt Babineau
I have been playing with the $_POST variable how would I go about looping over the $_POST variable to retrieve the variable and values? I can do this: <% if (count($_POST) > 0) { /*send mail */%>send out mail<% $var1 = array_keys ($_POST); $var2 = array_values ($_POST); print_r ($var1)

[PHP-WIN] New to PHP

2002-01-24 Thread J Messam
When I installed PHP 4, I ran the test.php it appeared to have been installed correctly. I tried to write some simple scripts, they ran at first but then every attempt to run a PHP script generates this error. PHP has encountered an Access Violation at Your help would be appreciated. --

Re: [PHP-WIN] New To PHP need help with mail

2002-01-20 Thread Rubén Gutiérrez
On Sun, 20 Jan 2002 15:40:23 - "Ross Fleming" <[EMAIL PROTECTED]> wrote: > Asuuming you have PHP setup already, edit your PHP.ini file. Change your > mail settings in it to: > [mail function] > ; For Win32 only. > SMTP= mail.mysmtpserver.com ; for Win32 only > > ; For Win32 only. > sendmai

RE: [PHP-WIN] New To PHP need help with mail

2002-01-20 Thread Ross Fleming
, use the mail(); function. Full details can be found here http://www.php.net/manual/en/function.mail.php You should get the hang of it. Good luck Ross -Original Message- From: Burrito [mailto:[EMAIL PROTECTED]] Sent: 19 January 2002 20:56 To: [EMAIL PROTECTED] Subject: [PHP-WIN] New To PHP

[PHP-WIN] New To PHP need help with mail

2002-01-19 Thread Burrito
I have a good cold fusion background but am now trying to tackle a new beast. I really only need to have e-mail functionality on an action page from a form page. Here is exactly what I need. I have a form page that asks questions like: riding bikes riding bikes riding bikes I need to

[PHP-WIN] New to PHP!!!!!

2001-11-22 Thread Oli Wilkinson
Not sure if i'm in the right place but I'm new to PHP and databases. Does anybody know of any simple tutorials to make a simple news based database in PHP using phpmyadmin for MySQL All I want is a page that shows the last xx news items with an ability to scroll through other pages to v

RE: [PHP-WIN] New to PHP, Please Assist

2001-08-04 Thread tony
the client machine and that's all. HTH Tony -Original Message- From: matt [mailto:[EMAIL PROTECTED]] Sent: 03 August 2001 23:17 To: [EMAIL PROTECTED] Subject: [PHP-WIN] New to PHP, Please Assist How can I make php call a javascript function? Is this even possible? Thanks in ad

[PHP-WIN] new to PHP: add variable to session...?

2001-07-13 Thread Andrew.Martin
Hi I have an include file which submits generic forms The first line of the include is $url=$sess->url(sprintf("$PHP_SELF")); so the page reloads before the submit process takes place. I want to keep a variable value in this reloaded page but it is always being lost. I don't want to modify the