[PHP] question

2002-09-06 Thread Meltem Demirkus
Hi, Can you help me? I want to send the button name to the another page when that button is pushed...Is it possible by using type="hidden" or I need to use another way ...?? thanks alot meltem demirkus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] cant find the wrong?

2002-09-06 Thread Meltem Demirkus
> Hi, > I am using this on a page to move 'new_id' to another page: > > > > and onthe other page I qm tring to get the data like this: > > $id= $_POST['id'] ; > > even I tried echo $new_id; (directly use the data) > but it i

Fw: [PHP] cant find the wrong?

2002-09-06 Thread Meltem Demirkus
I am correcting I used echo $id; but did not work thanks. meltem - Original Message - From: "Meltem Demirkus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:42 AM Subject: [PHP] cant find the wrong? > > > > Hi, >

[PHP] question about Location

2002-09-06 Thread Meltem Demirkus
Is there anyway to direct my page to another after the php and output process work on the page? thanks meltem demirkus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] question about Location

2002-09-06 Thread Meltem Demirkus
t.. > > so I dont know what to do.. > meltem > > > - Original Message - > From: "Brad Bonkoski" <[EMAIL PROTECTED]> > To: "Meltem Demirkus" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Friday, September 06, 2002 1

Fw: [PHP] question about Location

2002-09-06 Thread Meltem Demirkus
x27;t mean output unless you use echo or print or whatever to > output from there anything. > Just use header("Location: yournewpage.php"); at the end. > > Meltem Demirkus wrote: > > >>I mean I made a page with php and other stuff..And there is form .When I >

Fw: [PHP] question about Location

2002-09-06 Thread Meltem Demirkus
ok thans , I am trying meltem > Meltem Demirkus wrote: > > >I tried , but it is giving this error: > > > >Warning: Cannot add header information - headers already sent by (output > >started at C:\FoxServ\www\debugger\project_module\project_update_.php:2)

[PHP] refresh a php page

2002-09-06 Thread Meltem Demirkus
Hi, Is it possible to refresh a php page by a code?Or I should use meta or javascript?. thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] about whitespace

2002-09-06 Thread Meltem Demirkus
Hi, is there any function which removes white spaces inse a string? thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: about whitespace

2002-09-06 Thread Meltem Demirkus
str_replace() works .. thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Undefined index, Undefined variable, Undefined constant....

2002-09-06 Thread Meltem Demirkus
I had the say problem, try this if($_POST['update'] == "Update") { someting to do... } - Original Message - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "'Jens Winberg'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 5:12 PM Subject: RE: [PHP] Undefined index,

[PHP] Fw: combine 2 integer

2002-09-09 Thread Meltem Demirkus
> Hi, > > I want to add one integer to the end of another , which function can I > use?.. > > thanks > > meltem > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] combine 2 integer

2002-09-09 Thread Meltem Demirkus
Hi, I want to add one integer to the end of another , which function can I use?.. thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] select box

2002-09-09 Thread Meltem Demirkus
Hi, Can I put the "selected" option of select box later by using php? thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] date question

2002-09-09 Thread Meltem Demirkus
Hi, Is there any function which returns the day , month or year of a date ? thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] header question

2002-09-11 Thread Meltem Demirkus
Hi , I want to know if there is any way to send data in header("Location:login.php") .I know how to send like this but I need to use header and I dont know howto do this?... thanks alot meltem demirkus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] question

2002-09-11 Thread Meltem Demirkus
Hi, I am working on a process which turn to the previous page when the user enter something wrong in the form on a page .But I also want to warn the user with an error message on this page ...I know using heder : location but I couldn't add the message ... can anybody help me ? How can I add this

[PHP] Re:[PHP]question

2002-09-11 Thread Meltem Demirkus
Thanks ...But I know this way about carrying data from one page to another.. I want this message to be seen on the page without my doing anythingand I cant do that?.. - Original Message - From: "John Wards" <[EMAIL PROTECTED]> To: "Meltem Demirkus" &l

Fw: [PHP] Re:[PHP]question

2002-09-11 Thread Meltem Demirkus
).But I dont want to copy the same form page accoring to the possible mistakes .. I want to learn if there is an easier way to do this... thanks to everyone.. meltem - Original Message - From: "Meltem Demirkus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday

[PHP] what is wrong?

2002-09-11 Thread Meltem Demirkus
Hi, I want to understand what is wrong with this code?I am trying to understand when an empty inputs come from form and I will then give a warning message.. if($_POST[new_password1] == " ") echo "empty input"; thanks.. meltem -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] a href...

2002-09-13 Thread Meltem Demirkus
Hi, Iwant to send 2 variable by using a href like that: a href="bug_detail_user.php?id=$id?reporter_id=$reporter_id" isnt this possible because it is taking the data id as $id?reporter_id=$reporter_id... can anyone tell me how I can manage this.. thanks.. meltem -- PHP General Mailing Lis

[PHP] mail() question

2002-09-17 Thread Meltem Demirkus
Hi, I am trying to send an email by using the function mail(). Although I use in a form of mail($to, $subject, $message, $headers), it is giving this error: Failed to Connect So I think I am missing something ... Can anybody help me ?.. thanks alot meltem demirkus -- PHP General Mailing

Re: [PHP] mail() question

2002-09-17 Thread Meltem Demirkus
quot;Form Sent!"; echo "Thank You, $_POST[$sender_name]"; echo "Your feedback has been sent."; echo ""; ?> - Original Message - From: "John Wards" <[EMAIL PROTECTED]> To: "Meltem Demirkus" <[EMAIL PROTECTED]> Cc: <[

[PHP] about $_post

2002-09-19 Thread Meltem Demirkus
Hi, I just want to learn if there is any differen between $_POST[ID] and $_POST['ID'] ..If there is.. does it cause a problem ?.. thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] string division

2002-09-19 Thread Meltem Demirkus
which function divides astring to the pieces accorrding to another string. for example according to a comma .. thanks... meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] about forms with php

2002-09-20 Thread Meltem Demirkus
Hi, I want to learn if anyone tried to use both of javasccript and php together ?Because when I tried to use them like this: and when I click submit.. javascript is working but it is not going to the sign_up_ page ..How can I manage it?.. thanks alot.. by the way , by using javascript ,

Re: [PHP] about forms with php

2002-09-20 Thread Meltem Demirkus
but I also want to check @ and . characters.. ...checking only if the email field is empty or not is not what I want meltem - Original Message - From: "Ferhat Can" <[EMAIL PROTECTED]> To: "Meltem Demirkus" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]&

Re: [PHP] about forms with php

2002-09-20 Thread Meltem Demirkus
by the way If I remove return false .. script is checking the correctness but just after it is going to the page "sign_up_ page .php "..I just want it to go to the page when the email is correct .. Is it possible to manage ? meltem - Original Message - From: "Jon Haworth" <[EMAIL PROTEC

[PHP] cookie

2002-09-26 Thread Meltem Demirkus
hi, can anybody help me with cookies..I read the manual of php but it came complicated..Any basic tutorial or other something helps alot..I am trying to make a cookie to kkep the user id in it... thanks meltem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww