[PHP-DB] Need some help with PHP coding

2011-10-12 Thread T Matias
*Need so help !!! We have a website based on the Professional theme cubit .. For some time to now we had to migrate to another server... After moving, the all site is working perfect... The only problem is that, we have a home page video... And I don't know how to place that video on the home

Re: [PHP-DB] Need some help

2005-05-12 Thread Luis Morales
Why not use a sessions ? once posted your process form, you can store the final results on session vars and passing the results to other pages. Take a look on www.php.net on session topic. Regards, Luis Morales Murray @ PlanetThoughtful wrote: Sorry but this isn't working. The variable

[PHP-DB] Need some help

2005-05-11 Thread ReClMaples
Hello all, I am having an issue with displaying a variable from another php script. Can you help please? Here is the code that I’m using: ?php $item_ttlprice = $_POST[$ttl_price]; ? html body Your price is: $ ?php echo $item_ttlprice; ? body /html pretty simple I would think but I can’t

Re: [PHP-DB] Need some help

2005-05-11 Thread Mark Cain
of phpinfo(); Mark Cain - Original Message - From: ReClMaples [EMAIL PROTECTED] To: PHP php-db@lists.php.net Sent: Wednesday, May 11, 2005 3:14 PM Subject: [PHP-DB] Need some help Hello all, I am having an issue with displaying a variable from another php script. Can you help please

Re: [PHP-DB] Need some help

2005-05-11 Thread Philip Hallstrom
I am having an issue with displaying a variable from another php script. Can you help please? Here is the code that I’m using: ?php $item_ttlprice = $_POST[$ttl_price]; This should at the very least be: $item_ttlprice = $_POST[ttl_price]; // remove the last dolalr sign Also, if youre HTML

Re: [PHP-DB] Need some help

2005-05-11 Thread Mark Cain
, May 11, 2005 6:28 PM Subject: RE: [PHP-DB] Need some help Sorry but this isn't working. The variable $ttl_price is a calculation in my first script. It stores the value of $Total_Price for all items. I am trying to pass that to a new page. It isn't a form that I'm working with, do I need

[PHP-DB] Need some HELP

2004-05-10 Thread Adam Farid
Hi, I am a new to php. I am using php ver 4.0.3 and MySQL. I have wrote two files and I'd like to pass some varaibles from first file to use them in the second file. but the values did not displayed in the second file(nothing print out). and also I want to pass them to anothr file ... here

RE: [PHP-DB] Need some HELP

2004-05-10 Thread Ryan Jameson (USA)
] Sent: Monday, May 10, 2004 12:37 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Need some HELP Hi, I am a new to php. I am using php ver 4.0.3 and MySQL. I have wrote two files and I'd like to pass some varaibles from first file to use them in the second file. but the values did not displayed

Re: [PHP-DB] Need some HELP

2004-05-10 Thread Daniel Clark
unless you have Globals turned on, I think you and $_POST['variable_name_here'] in the second page. print INPUT TYPE='hidden' NAME='UserName' VALUE='$_POST['username']\n; Hi, I am a new to php. I am using php ver 4.0.3 and MySQL. I have wrote two files and I'd like to pass some varaibles

[PHP-DB] Need some HELP (not works)

2004-05-10 Thread Adam Farid
Thanks pepole. I've tried but still does not work. when I put the varaibles name between ' ' I found this error: Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING'. I typed in this way print INPUT TYPE='hidden' NAME='User_name' VALUE='$_POST[UserName]';

Re: [PHP-DB] Need some HELP (not works)

2004-05-10 Thread Daniel Clark
Is it User_name or UserName? Also try this string with 'UserName' in single quotes. print INPUT TYPE=\hidden\ NAME=\User_name\ VALUE=$_POST['UserName']\; I've tried but still does not work. when I put the varaibles name between ' ' I found this error: Parse error: parse error,

Re: [PHP-DB] Need some HELP (not works)

2004-05-10 Thread jeffrey_n_Dyke
Thanks pepole. I've tried but still does not work. when I put the varaibles name between ' ' I found this error: Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING'. I typed in this way print INPUT TYPE='hidden' NAME='User_name' VALUE='$_POST[UserName]';

[PHP-DB] Need some HELP (not works)

2004-05-10 Thread Adam Farid
Thanks. I tried your suggestion, but the values still did not displayed in second page. nothing printed out. I put my files in db-list (Need some HELP). regards Adam _ Stay in touch with absent friends - get MSN Messenger

Re: [PHP-DB] Need some HELP (not works)

2004-05-10 Thread Marcjon Louwersheimer
- Original message - From: Adam Farid [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Mon, 10 May 2004 19:54:51 + Subject: [PHP-DB] Need some HELP (not works) Thanks pepole. I've tried but still does not work. when I put the varaibles name between ' ' I found this error: Parse

Re: [PHP-DB] Need some help please!

2004-02-20 Thread Mikael Grön
Hi. First of all it's never a good idea to use ? instead of ?php. But anyway. Your loss. ;) You will need to do a refresh of the page to be able to run an insert query. The refresh will need to be made by the JavaScript and since I've refused to learn JavaScript, I can't help you with

Re: [PHP-DB] Need some help please!

2004-02-20 Thread JeRRy
Mikael, Hi :) First of all it's never a good idea to use ? instead of ?php. But anyway. Your loss. ;) My loss? Explain? (all ears) I've used only ? php a few times and end it with ? ... But I normally use only ? and ? and have *never* had a problem with it. But I am all ears knowing

[PHP-DB] Need some help please!

2004-02-19 Thread JeRRy
Hi, I have this code, comments below: ? include(../pages/setup.php);? ? login();? ? include(../pages/header.php);? !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head STYLE .general3 {background-color:#33;z-index:4} .general2 {background-color:#55;z-index:3}

[PHP-DB] need some help...

2002-04-02 Thread Alex Behrens
Hey Guys, I'm new to this list and I need some help outputing some code to a .shtml file instead of using a dynamic php file. Can someoneh elp me get this working? I have a script that outputs headlines for reviews and I need to output it to a file for inserting into my page, because I can't

Re: [PHP-DB] need some help...

2002-04-02 Thread szii
Not really a database question, but why not... Step 1: Clean up the code... a) Convert all double-quote to single quotes in the HTML portion. I usually use doubles for PHP and singles for HTML. I hate having to escape quotes. b) Use of spacing

RE: [PHP-DB] need some help...

2002-04-02 Thread Jonathan Hilgeman
] Subject: Re: [PHP-DB] need some help... Not really a database question, but why not... Step 1: Clean up the code... a) Convert all double-quote to single quotes in the HTML portion. I usually use doubles for PHP and singles for HTML. I hate having to escape

FW: [PHP-DB] need some help...

2002-04-02 Thread Peter Lovatt
--- Sunmaia www.sunmaia.net [EMAIL PROTECTED] tel. 0121-242-1473 --- -Original Message- From: Alex Behrens [mailto:[EMAIL PROTECTED]] Sent: 03 April 2002 01:25 To: [EMAIL PROTECTED] Subject: [PHP-DB] need some help... Hey Guys

RE: [PHP-DB] need some help...

2002-04-02 Thread Shrock, Court
]' Cc: '[EMAIL PROTECTED]' Subject: RE: [PHP-DB] need some help... Thank you. Someone else exists who has the sense of mind to use single quotes. I hate looking at other people's code that has tons of \s in it. - Jonathan -Original Message- From: [EMAIL PROTECTED] [mailto

Re: [PHP-DB] need some help...

2002-04-02 Thread Alex Behrens
-unlimited.com Send News: [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 7:00 PM Subject: Re: [PHP-DB] need some help... Not really a database question, but why not... Step 1: Clean up the code... a) Convert