RE: [PHP] page expire error

2006-03-29 Thread Remon
Hi, You could do it with post, if you set the right headers in your script. http://nl2.php.net/manual/en/function.header.php Text from php.net PHP scripts often generate dynamic content that must not be cached by the client browser or any proxy caches between the server and the client browser.

[PHP] Delete From Array

2003-02-03 Thread Remon Redika
Hi EveryOne.., I need your help.. I am Using 2 Pages for Deleting rows.. In Page 1 Like This Below. (I am displaying The ID of table ..) and my Page 1 Will Post to Page 2 in Page 2, I've Tried to Deleting Rows.. But I Can't Deleted the Rows... :( PAGE 1 ? include config.inc; $mysqllang =

[PHP] Re: Delete From Array

2003-02-03 Thread Remon Redika
sorry everyOne.. I have Found the answer.. Problem Solved.., And Topic Canceled.. thanks.. Remon Redika writes: Hi EveryOne.., I need your help.. I am Using 2 Pages for Deleting rows.. In Page 1 Like This Below. (I am displaying The ID of table ..) and my Page 1 Will Post to Page 2 in Page

[PHP] Delete Related Table

2003-02-02 Thread Remon Redika
hi everyone.. i need delete two related table from mysql database, but i am found and error.. this following my sql language : DELETE FROM X INNER JOIN Y ON X.ID = Y.ID WHERE Y.No = 144; i found an error in INNER JOIN syntax.. but i have successfully displaying 2 Related table in SELECT

[PHP] continue after break

2003-01-22 Thread Remon Redika
I have put Image inside of my loop... TDimage src=blabla.jpg/td and that image located between ?$row['field1? and ?$row['field2']? I want the image not doing loop too. cause i just need one image.., I just do looping for my data: ?$row['field1? and ?$row['field2']? ? while ($row =

[PHP] stupid question (Back Function)

2003-01-13 Thread Remon Redika
hi everyone, It's Possible We used Php Scripting to Back the client Browser Like This Below : (ussualy I make it with java script) : javascript:history.back(1) but right now, i need using the 'header's function', functionaly to back the page to previouse page. sorry before :) -- PHP

[PHP] string

2002-11-29 Thread Remon Redika
hi everyone.. how to get the part of string and make it into a variable.. sample : determine now, i want to take just mine or 4 word from right, or deter (for left function). and after i got it, i want to make the mine into $x variable my mind.. $x = mean help please... -- PHP General

[PHP] Foreach ...... Help

2002-11-06 Thread Remon Redika
I am Newbie in PHP My Problem It's Too Hard to Explain but i'll try its.. I have Two Text Fields The First Text Field i call it InputX, the amount of InputX is Constant, and The Second Text Field I Call it InputY, Generatable Field I have the Button usefull for Generated InputY (so If I Click

[PHP] Re: Foreach ...... Help

2002-11-06 Thread Remon Redika
('$InputX','$vary($i)'); echo $insertq.br; mysql_query($insertq); $i++; } ? Thank's Jon Haworth writes: Hi Remon, I try this script with php, but i found an Error. It would be helpful if you could show us this error message. $vary(100); At the very least, you should

[PHP] Re: Foreach ...... Help

2002-11-06 Thread Remon Redika
, why are you looping through the $InputY array and putting all the values into $vary? Why not just do $vary = $InputY; ? If it is because you need to renumber the indices, have a look at the array_values() function. -Rasmus On Thu, 7 Nov 2002, Remon Redika wrote: Parse error: parse error

[PHP] newbie question

2002-10-03 Thread Remon Redika
I am newbie in php I have var $query_string in my address page. I want get value of query string. For example I give string on my query string like www.mypages.com?var=numberx I just want get a value of var or numberx I usually do this var on asp request.querystring(var) , so I'll get the value

[PHP] Thank's

2002-10-03 Thread Remon Redika
( ) for in ASP, use the $_POST array in PHP e.g. $var = $_POST{'var'}. Cheers! Scott On 10/2/2002 1:24 PM, Remon Redika wrote: I am newbie in php I have var $query_string in my address page. I want get value of query string. For example I give string on my query string like www.mypages.com

[PHP] Re: html input and php (newbie), ask more

2002-09-24 Thread Remon Redika
i have tried to change post file from input.php3 to input.php and it's done. i wanna ask more .., why if i used post var to input.php3 the script doesn't work. and i got message Method Not Allowed The requested method POST is not allowed for the URL /input.php3.

[PHP] Re: Maybe a stupid question but can it be done?

2002-09-23 Thread Remon Redika
I just run two insert to do that. with two different sql syntax ... Chuck PUP Payne writes: Ok, Let's try this again, for some reason this didn't post from early today. I have db that has two tables that I am needing to post the same information into both tables, I can't use ID. So I

[PHP] using variable ..help

2002-08-28 Thread Remon Redika
I wanna do with my TR bgcolor trough my array ?$mycolor = array(#E8D0E8, #F8EFF8);? table ?php while ($row=mysql_fetch_array($result)){? tr bgcolor=?for($i=0;$i=count($mycolor[$i]);++$i){ echo ($mycolor[$i]); } ? tdblablabbaba/td

[PHP] Re: using variable ..help

2002-08-28 Thread Remon Redika
Thank you for u'r advanced, it's works correct... regard me. Stas Maximov writes: Remon, Your code works correct, cause you coded it this way as it should go through the array and output every element in the array into one line. If I got your idea correctly - you probably want

[PHP] Variable

2002-08-14 Thread Remon Redika
this is the form -- insert.php tr td width=105Nama Satu/td td width=289 input type=text name=namasa size=40 /td /tr td width=105Nama Dua/td td width=289 input type=text name=namadu size=40 /td /tr td