Connecting Tech Pros Worldwide Help | Site Map

relative linking in php

  #1  
Old March 13th, 2008, 12:55 AM
Sudhakar
Guest
 
Posts: n/a

i am using a self submitting for using php
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="POST"
id="test2" name="registrationform">

the registration page starts with a lot of terms and other details
about the registration and then the form fields for the

user to fill the registration page. i have used php to validate the
form, presently when a user clicks the submit button and

if there are any validateions that need to be displayed to the user,
then the user has to scroll from the top of the page all

the way till they see the form elements with the validation message
ex= Please enter your phone number.

my question is, as in html with relative linking ex
<a href="#link1"click here</a>

<a name="link1"</a>
Text here

the page can be moved to an exact location, can this be done more or
less close to this relative linking using php so that

the user need not scroll from the top of the page to see the
validation message.

NOTE = since i am using a self submitting form just before the first
form element i have created a blank table row and in

this table row the php validation message would appear if the user
missed out some information. due to this the user has to

scroll from the top of the page to see the php generated validation
message. if i use the same php validation at the very top

of the page the error message will be at the top and the form fields
at the bottom and the user will have to scroll up and

down to read the validation message.

please advice.

thanks.
  #2  
Old March 13th, 2008, 01:55 AM
ZeldorBlat
Guest
 
Posts: n/a

re: relative linking in php


On Mar 12, 7:54 pm, Sudhakar <sudhakarar...@gmail.comwrote:
Quote:
i am using a self submitting for using php
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="POST"
id="test2" name="registrationform">
>
the registration page starts with a lot of terms and other details
about the registration and then the form fields for the
>
user to fill the registration page. i have used php to validate the
form, presently when a user clicks the submit button and
>
if there are any validateions that need to be displayed to the user,
then the user has to scroll from the top of the page all
>
the way till they see the form elements with the validation message
ex= Please enter your phone number.
>
my question is, as in html with relative linking ex
<a href="#link1"click here</a>
>
<a name="link1"</a>
Text here
>
the page can be moved to an exact location, can this be done more or
less close to this relative linking using php so that
>
the user need not scroll from the top of the page to see the
validation message.
>
NOTE = since i am using a self submitting form just before the first
form element i have created a blank table row and in
>
this table row the php validation message would appear if the user
missed out some information. due to this the user has to
>
scroll from the top of the page to see the php generated validation
message. if i use the same php validation at the very top
>
of the page the error message will be at the top and the form fields
at the bottom and the user will have to scroll up and
>
down to read the validation message.
>
please advice.
>
thanks.
Just include the anchor in the URL that the form is posting to:

<form action="<?php echo $_SERVER["PHP_SELF"]; ?>#topOfForm"
method="POST" id="test2" name="registrationform">
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
relative linking in php runway27 answers 1 March 13th, 2008 10:14 AM
2 x 2 div grid in Firefox going wrong firstexact answers 2 November 30th, 2007 10:42 PM
Frustrated with PHP’s "include" steve answers 43 July 17th, 2005 08:30 AM
Hiding a PHP app behind a symlink? Patrick Lioi answers 2 July 16th, 2005 11:56 PM