Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Launching PHP From HTML Form


i build an app using PHP/MySQL/web. the APP and PHP programm are both located on the CD.

step 1:
i want it to a first interface (installation phase) to be an HTML page.

step 2:
I want it to get some informations for the installation

step 3:
i want the form to launch a PHP page (on the CD) and using the PHP.exe (on the CD)

step 4:
the PHP page send my modules using FTP

step 5:
once the FTP transfert is finished, the PHP page open a new page (that has been just uploaded) on the web server.

my problem is in step 3, how is it possible to launch a PHP script from an HTML page which is not on a web server??

I can do it easily with a SHELL script but i prefer the graphic interface of an HTML form. I know it is either possible using GTK but i don't want to use it because i'm not surre the client has a JVM.




View Complete Forum Thread with Replies

Related Forum Messages:
Launching A URL
When I am executing a PHP routine, I would like to start a page on
a server. Could be also interesting to receive back the answer so
I can use it contents in my program.

In other words as a sample when I am at some point of execution of
a my PHP routine I would like to send to the network:

http://www.someserver.com/somefunction.php?&user=$auser

Eventually I would like to receive in some way the answer page from
the server.

It's possible to do this?

View Replies !
Launching Application
I developed an internal website (hosted in a company server), which contains a few php scripts (forms users fill out and e-mail to others upon send). I have an e-mail instruction in the scripts, with a list of e-mail addresses. I would like to change this so users can launch Lotus Notes from the script upon sending, and choose to who send the form (instead of having fixed e-mails in the script). The company has given me the path where the .exe program resides on the server.

View Replies !
Launching Second Script When First One Finishes
I have numerous PHP scripts that connect to our Oracle database and export csv files. The amount of time it takes for each script to finish varies. Sometimes it takes 10 minutes, sometimes 30 seconds. I would like to figure out a way to have the first script run and when it finishes, launch the second script and so on and so on.

View Replies !
Launching Files Locally
I have PHP and Apache installed on a windows box that is attached to
my home theater. I wrote some code that indexes the contents of a
directory that has some video clips etc in it, and the outputted HMTL
is nothing more than a series of hyperlinks to these files, with some
CSS to liven it up a bit.

The problem is this: when I click on one of the links, rather than
launch the file, it attempts to "download" it (even though the file
resides right there on the machine anyway). In my hyperlinks, I
specified to use the "file:" protocol instead of HTTP. I really just
want it to launch the file.

View Replies !
Launching Community Site
I'm creating a community website, and I want the following features:

- members are able to write reviews
- members are able to post classified ads (I'd like to be able to charge money for this)
- ability in the future to create groups within the community.

Can anyone suggest a content management system (CMS) or other off-the-shelf solution? Drupal springs to mind, but then I don't have a lot of experience with these kinds of builds, so I may be missing something that is out there.

View Replies !
Launching A Background Script From Php In Windows/IIS
I'm trying to build a PHP page which launches another php script to be run
in the background. The web page should return immediately, while the
background script may run for 10 minutes or something. Unfortunately I'm
getting all kinds of weird behaviour..

In my main script I'm using exec() (also tried the other options) to start a
..bat file. This actually works, the batch file is launched and is able to
write something to disk.. Now if I put the following line in the batch file:

c:phpphp.exe -q backgroundscript.php

then instantly I'm seeing about 30 php.exe processes being created, but
nothing seems to be happening really. The processes seem to be dying
immediately and replaced by new ones. So apparently php is trying something
but fails and tries again.

Both the script and the batch file work fine from the command line. Group
'Everyone' has read/execute rights for the batch file, the php script and
php.exe. I have tried prefixing the command with START /b or cmd.exe /c but
neither seem to make any difference. Also I tried redirecting stderr, stdout
and stdin to NUL

Server is Win2k, IIS5, php4.3.0. Searched the php docs, tried suggestions
but it doesn't work, maybe because they use Apache.

My guess is that the anonymous user IUSR_* doesn't have the rights to do
something, but I can't figure out what.

View Replies !
Launching An Application: Does PHP Limit Network Connections?
I am having a problem using PHP to launch an application on the server.
All the basics work, but I cannot launch more than 4 instances of the
application. This application functions as a server itself, and I
specify the port number when I launch it, so my theory is that I am
reaching some limit on network connections.

This is my basic launch sequence:

<?php
$command = 'c:Program Files (x86)myprogmyprogram.exe'
$arguments = ' /Port:' . $port;
exec('C:PsToolspsexec.exe -accepteula -d -s "' . $command . '" ' .
$arguments . ' 2>&1', $output);
?>

Note that I am using psexec because I need to keep track of the process
ID number and kill the application when a user logs out. I can provide
more details if needed, but if there is indeed some upper limit on port
connections, that would certainly explain what I'm seeing.

Incidentally, if I try this same procedure launching "Internet
Explorer", my limit is 9 (instead of 4). If I launch a non-network
application, it seems that I can launch as many as I want without limit.

Note: I am using Windows XP Professional x64 Edition SP1

View Replies !
Launching A Program With Exec & Pstools/psexec.exe
I am trying to launch a program with PHP code. I am running Apache on Windows XP SP2. Code:

View Replies !
Launching Several CURL Posts Without Waiting To Download Pages..
Hy there, ok, i`ll get to the problem:

My php script has a function named curl(some curl options and instructions), it doesn`t matter that, what it matters:

$var1 = curl("http://www.somedomain.com/somepage1.php");
$var2 = curl("http://www.somedomain.com/somepage2.php");
$var3 = curl("http://www.somedomain.com/somepage3.php");
$var4 = curl("http://www.somedomain.com/somepage4.php");

Ok, so it downloades the content of somepage_.php to the $vars, however somepage_s_.php contains several scripts which takes a verry long time for the page to download, so my script waits for each page to download, one by one, as line by line, what i would like do rezolve is to start the curl without waiting to download the first page, then the second and so on, it should start the download of all the pages at almoust the same time. That would be all, please help, i`ve lost 4 nights trying to get this fixed but no luck.

View Replies !
Create A Form In HTML And A PHP Page For Validating The Data Entered Into The Form
I've tried to create a form in HTML and a PHP page for validating the data entered into the form and adding them into a MySQL database.

However, when i tried them out, it happens that after i press the submit button in the HTML page, it just show a blank page instead of what i expect. I've tried several times, but it is still the same and i don't know what is going wrong. Code:

View Replies !
Using Includes: Html Form Parse Data Inside 2nd Form.
i'm coming down the stretch, so to speak. i've got a lot of the separate things settled that i need for my main "date entry" form. due to the several data items which need to be collected by this form, i've decided to try using includes, which i've found isn't that tricky at all really.

however, one of my includes needs itself to parse it's own little form data to result in the final entry to be submitted in the "date entry" form. perhaps doing this particular bit as an "include" is NOT the best option? Code:

View Replies !
Use Html Form When I Print Value Of One Text Input Of The Form
i have problem with post method , i use html form when i print value of one text input of the form , it prints the value plus the name of the text input plus the = plus the value again.

View Replies !
OT? Php Form And Html
Sorry to ask an old question, but I cant seem to get this simple php
to work. Ive looked at old postings and for whatever reason cant seem
to
get this to work. Any help is greatly appreciated. Im new to PHP.

My PHP works just fine (apparently), but doesnt work the way I want it
to.

All I want to do is accept a login and password and then send it off to
a perl script on 'submit'. It never appears to get into my 'if'
section,
any suggestions? I cant seem to get the following to work:

<html>
<body>

<?php

if (isset($_POST['Submit']) && ($_POST['login'] == 'login'))
{
print "Login: $login
";
print "Pass: $pass
";
$file = popen("/home/http/website/cgi-bin/gs_do_search.pl $login
$pass","r");
while ($line = fgets($file,1024)) {
// display it now
}
}
?>

<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">

Login: <input type="text" name="login"><br>
Password: <input type="password" name="pass"><br>
<br>
<input type="Submit" name="Submit" value="login">
</form>

</body>
</html>

View Replies !
PHP XML XSL HTML Form
I am working on a generic (php) script to produce (X)HTML Forms through XML
and XSL based on field-definitions stored in a database.

The basic way i did HTML-forms in PHP was like this:
http://212.204.203.71/test/simpleform/simpleform.php

source: http://212.204.203.71/test/syntax/simpleform.php

This basic form is validated when it is submitted to itself... if validation
fails then an error message is created and displayed on the page...otherwise
validation is ok and we can do some inserting in the database and/or
redirect to another page. Remark: the fields that are filled will be
automaically filled in if the page is submitted to itself (that will be my
problem in the XML/XSL version of this script).

Now we go over to the XML/XSL version of the script above: I therefore
created an XML file (holding the field definitions) see:
http://212.204.203.71/test/xmlform/form.xml

And further i created an XSL file to transform the XML file into a HTML
form. see: http://212.204.203.71/test/xmlform/form.xsl

Then i used a file form.php to put the XML and XSL together using some PHP
xslt functions: http://212.204.203.71/test/xmlform/form.php

source: http://212.204.203.71/test/syntax/form.php

This all works fine but now the problem. I am looking for a concept of how
to get the formfields filled in again after submitting the form because in
XSL this is not as easy as with my basic form. I tried to send firstname and
lastname as parameters in the function call and to put them as parameters in
the xsl file but that does not work and it is not ok at all because my
intention was to build a generic script....

Hope you see my problem as it is hard to explain.

View Replies !
Form HTML
I'd like to know the best way for using the same HTML form, with minor differences, in different parts of a script without having to actually have two instances of it in the script.

View Replies !
HTML Form
I have a form on my web page that looks like this:

<span id="site_search">
<form name="frmSearch" method="post" action="" style=" margin: 0 0 0
15px ">
Search This Site:
<input type="text" name="search_field"><input name="Go" type="submit"
value="Go" style="font-family:Arial, Helvetica, sans-serif">
</form>
</span><br/>

How do take the input from this form and use it to populate another form (on another page within the same site) when the user clicks the Go button?

View Replies !
HTML Form And PHP
I have a HTML form (which the user completes) that submits the information in it to a PHP script which then compiles the information and enters it into a database. It does this by using the POST method. The problem is not all the data is being passed to the Database. I have noticed that the fields which have data missing from them is where the form is of the drop-down list type e.g. title -> mr, mrs, miss, Dr.

View Replies !
HTML/PHP Form
I've been dealing with this problem a lot lately because I design a lot of forms. I've been merely copying and pasting chunks of code and changing the title of the form input and then inserting the text field or checkbox or whatever next to it and then changing the internal options for each input (maxlength, size, value, etc.). Then, I have to go to the top of the form page and do the whole "if the form submit button isset," then declare all the variables, do error checking on them all, and then throw them into a default HTML format to send via e-mail.

View Replies !
How Can I Put XSL Tag Inside HTML Form Tag?
Sorry I couldn't find a XML/XSL group
I can only post these groups close to my subject.

In JSP (Java Server Page) you can do something
like this

<%
String v = myBean.getValue();
%>

<form .... >
<input name="myTag" value="<%= v %>">
</form>

You can do the similar thing in PHP.

But when I try in XSL I got error.

I have an XML file

<myTag attribute1="value1" />

Now I want to transform it into HTML form tag used XSL template
But XSL doesn't like this

<input name="myTag" value='
<xsl:value-of select="@attribute1" />
'></input>

How can I solve this problem?

View Replies !
HTML Form Issue.
I think that this problem might have a simple
solution. I have a html page which has a few text boxes. On the top of
the form I have the following line of code:

<form action="ProcessComplimentaryForm.php" method="POST">

Hence when the user clicks submit, my php script
"ProcessComplimentaryForm.php" should be called. In my script I just
have a simple echo statement which tries to display one of the values
in one of the text boxes.

<?php

echo "First Name :
";
echo $_POST['firstName'];
?>

firstName being the name of one of the text boxes on my html page. When
I click submit on the html page I get the following error message:

-------------------------------------------------------------------------------
Method Not Allowed
The requested method POST is not allowed for the URL
/complimentary.html.
-------------------------------------------------------------------------------

What am I missing here? Is this an issue with the server I am trying to
work on or is it something in the code I have written?

View Replies !
Categories In Html Form...
Is there any easy way to select a coulmn (categories) from a mySql Database and put it into a dropdown box in a html form to be used to add to the table, this way they wouldn't have to type in the category and just select it from a dropdown box. I need to do this in a way that it won't select every category as there could be 3 rows with dogs as the category, I only want dogs to show up once.

View Replies !
I Have A Problem With An HTML Form.
I have a problem with an HTML form. I have a form which I want to be able to
type basic HTML code into it. When the submit button is selected the data is
then previewed and added back into the text box again. Unfortunately all of
the " charachters are escaped (I think that is the correct term) ie they
have a leading added. This is causing me huge problems. I don't understand
why that is happening. Any ideas?

------------------CODE--------------
<?PHP
if(!isset($contents))
{
include "config.php";
mysql_connect($cfg['dbhost'], $cfg['dbuser'], $cfg['dbpasswd']);
$query = "SELECT `text` FROM `golf_contents` WHERE 1 AND `section`
LIKE '$section'";
$result = mysql_db_query($cfg['dbname'], $query);
if ($result)
{
while ($r = mysql_fetch_array($result))
{
$contents=$r["text"];
}
}
}
$output = "
<html>
<head>
<title>
Edit Text
</title>
</head>
<body>
<form method="POST" action="edittext.php?section=$section">
<textarea rows="10" name="contents" cols="35">
$contents
</textarea>
<input type="submit" value="Preview" name="B1">
<input type="reset" value="Reset" name="B2">
</form>
<BR>Preview...<BR>
$contents
</body>
</html>
";
echo $output;
?>

View Replies !
Editing HTML In A Form?
I want to build a very basic online text editor, to allow customers to
modify their own sites' html content using a simple form with textarea
element.

I read the HTML file like so:

<?PHP

function EditText ($filepath)
{
if (!$file = file($filepath)) return false;
foreach ($file as $line) {
$value .= $line; // contains all text in file when done
}
$html = "<html><head><title>Editor</title></head>
<body>
<form method='post' action='processtext.php'>
<textarea rows=&#3940;' cols=&#3980;' name='txt' value='$value'>
<input type='submit'>
</form>
</body>
</html>";
echo $html;
return true;
}

EditText ('/sample/index.html');
?>

The problem comes when the parsed file containing html elements itself
is echoed to the browser. In itself, PHP does what it's asked, but all
browsers I tried choke on the contents of the TEXTAREA field. Best
example may be: try parsing the file containing the script itself, it
becomes a real mess.

I tried htmlspecialchars, this did not fix it. I tried addslashes to
only escape the quotes in the parsed file, also no success.

I saw one example online where 'they' preg_replaced about every possible
(x)html and php syntax element, resulting in an immensely large and slow
script. Can't imagine that's the proper way forward.

If at all possible I'd like to stay away from Javascript. Any idea if
this is a realistic approach? Are there any useable scripts available? I
searched google a lot, but I keep ending up at sites that offer html or
php editors for local use, not in a browser.

View Replies !
Passing HTML In A Form
What I am trying to do is pass HTML through a form in PHP. The form has to be in PHP format because I am really passing varables that have HTML in them.For example:

<font color="green">This is green</font>

Then when I assign the following: PHP Code:

View Replies !
Getting HTML Form Fields
I'm trying to figure out a way to get the values of input fields from a HTML form, and place them in a database. For example if a html form had 3 text boxes one for "name" one for "email" and one for "url" how would I go about getting those values? I also need it to grab the values from hidden form fields, is there such a function or class?

I know it will prob have to entail some regular expressions, but as I'm not too familiar with regxep could someone take a stab at it? Also any good tutorials on regexep would be nice too.

View Replies !
HTML Quick Form
I like HTML Quick Form and think that it is a great tool.. but I still
havent found any documentation that tells me how to use HTML Quick
Forms with my own table and my own layout. Is this possible?

Instead of the default positioning of form items the way it is done in
HTML Quick forms?

View Replies !
Html Form To Php To ODBC
I am new to PHP and programming in general. I am trying to create a 2 part html form to php file to query an MS Access database through an ODBC connection. In the end the user will be able to enter their search criteria into the given text boxes and the php file will query the database and return the results. My problem is that the php file is not recognizing the criteria entered into the html form, the form is sending the variables but the php is not recognizing them so my sql statements are not being carried out. I would be very appreciative if someone would take a look at the code I am using below and see if they can identify my problem.

View Replies !
Edit XML Using Html Form
I have simple XML:

<myXML>
<t1>My main Title</t1>
<t2>secondary title</t2>
<content>All kinds of good content</content>
</myXML>

All I want to do is make a simple CMS that can update the content inside the 3 inner nodes. I don't need to change, add or delete nodes. I thought of echo-ing the content to 3 html form inputs and fwriting to a new XML file to overwrite the old one using post method. Does this sound correct in theory? Does anyone know of an existing example of this method?

View Replies !
HTML Form To Database
Is it easy to create an HTML form that connects to a database through a data handling form. I have php 4.4 on my server and wrote all my scripts in 5.0 language and they dont run so i just wanna use an HTML form to submit to a database and to retrieve info from it.

View Replies !
HTML Form With PHP And MySQL
I'm building a content management system using PHP and MySQL so that we can add and remove projects from our website easily.

I want several dropdown lists with the options Yes/No (or radio buttons, whichever is easiest) in them and depending on the users choice it will add their choice into the db.

I have the Add page working fine, but the problem lies in the update page. if i go to my update page it pulls all the right information back into the HTML form from the DB until it gets to the dropdowns, which it doesnt like.

How can i make it select the appropriate option from the dropdowns depending on the DB? If i submit the changes it wont update it either and gives errors from the dropdown code. Code:

View Replies !
Posting To Php Without Html Form
I am quite familiar how to create a php page that POSTS or REQUESTS variables sent by an html form

HOWEVER, I am wondering if it there is a way I can post variables to another php page or page in general, with php, and skip the form all together,

for example:

I have this page that POSTS information from an html form
it make $id = $_POST['id'];
this page is called formprocess.php


now what i want to do is instead of having to use the html form to actually submit this data to formprocess.php, i want to submit this data with php

I have a page called send-data.php i want this page to send the 'id' variable straight to the formprocess.php page with no html form.

View Replies !
Keep Values In HTML Form With PHP
I'm trying to process a form. In my data validation function i try and check for errors in the user submitted fields. In the fields in which are fine i want to be able to keep the values in the form when there are errors and clear the fields that have errors in them. For some reason i cannot get this to work.

Here's my code, i've cut it down to the relevant parts. The first file is the index.php file which shows the form but first checks for errors. The second file has all the relevant php functions i call defined. In form.php i just show a small piece of the show form function where i try and present a text field with its default value. Code:

View Replies !
Using Html Form Data
I'm trying to send and receive data interactively to an html form and am having trouble processing the returned data. The idea is as follows:

- Retrieve records from a SQL DB and populate an array to send four of the fields from each record to an html table.

- As each row of the html table is built (using a loop) it includes a checkbox field (used temporarily, and not for return to the SQL DB) so the user can select one or more of the displayed records.

My problem is getting the record ids of the selected rows (checked boxes) back to my php processor so I can use the selections to populate a new array. I can't seem to grab and use any of the data from the checked rows. In the end, I need the record ID and road name fields for later use. Code:

View Replies !
Problem With HTML Form
I am having a problem displaying data in an HTML for for updates. The data is truncated at the first space in the form field. For instance "The Beer Store" is displayed as "The".

If I display the data outside the form field (input type-text) it displays correctly so I know the pull from the database is working correctly.

View Replies !
Mail Form With HTML
I have been successfully using the following code to process my forms (email addresses removed) Code:

View Replies !
HTML-Form In A PHP-class
i've got the following problem:

I want to code a class for a calendar-month-overview. This means, there is a form, where the user can select a month and a year. Can I just put the form in a function called print_month_overview() or sth. like that? But how can i save/restore the previously selected month/year?

For example, i have a file called test.php, where i'd like to show such a month_overview.
I make a new object of the month_overview.class: Code:

View Replies !
Populate HTML Form From DB
I would like to know the basics of populating a html form from fields in a db. I have data in a db that i would like to modify through a html form. How can i load the db data into the html form and then take the changes?

View Replies !
Pdf Form Submit As Fdf Not Html
I am using with good results pdf forms and submitting the data as html.

I tried to submit as fdf, but cannot display what is submitted. $_POST, $_REQUEST don't appear to work. If I use

echo $HTTP_RAW_POST_DATA; I get

%FDF-1.2 %âãÏÓ 1 0 obj<>>><><><><><><><>]/ID[<1FE42C86490852429229D83319C21A20>]/F(http://jupiter/atest/pdf.pdf)>>>> endobj trailer <> %%EOF

Non of the submitted data is there. I am not using the adobe toolset and prefer not to.

View Replies !
Html Form Coder
I'm sure you all have seem the html coders before, its located ontop of the textarea (form), where u can bold, italic, href, include image and etc. Email services such as Hotmail, and Yahoo mail has them too, you also see them here too.

Are there any html-coder scripts out there that I could embed them with my php program? (i know i know, but it isn't for me, but a friend of mine who dosn't know squad about html, where she can use the coder for ease of use).

View Replies !
HTML Form + Redirect URL
I have two other things I'd like to do, one is I want the user be able to browse their files upload and send me a file via the same contact form. I have the HTML in the doc, but I need the script to make it work. I also would like to redirect them to a thank you page when they hit submit, instead of sending them a text message. Here's the code I have so far....

if(!$mail->Send())
{
echo "<b>Your query was not sent. Please try again later.<b>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
else
echo "<b>Thank you for your interest in xxxxxx! Someone from our sales team will contact you within 2 business days.</b>";

?>

View Replies !
Values Form In JS/HTML
I have a JavaScript which is calculating some things based on exchange rate, In this script I use 2 values for EURO and USD which I get them from a form. Code:

View Replies !
HTML Form In Mozilla
PHP Code:

$transCrop = MagickCropImage( $original, $dest_x, $dest_x, $offset_x, $offset_y );

Using this function gives me a problem if I want the image to be 110x110 and the original image is 200 X 50. It just crops the image into 110 X 28. What I really want is to force it into 110X110 so that the image centers in the "110x110 Box", with a white background filling the space not used. The API has a ton of functions that make no sense to me. Should I first use a wand to draw a 110 and then composite over? I'm not even sure how to switch from using the MagickWand to the DrawWand.

View Replies !
Form To Html Email
I have tried about 8 different scripts, including one I paid for, and I just cannot seem to get one that works properly... the issues I am having is either im getting errors when submitting the form, form submission is successful I get directed to the thankyou page and then never receive an email, or I will get one that I cant change the from name and address when it appears in outlook...

Does anyone know where I can get a GOOOD script from that is going to allow me to send an email from my page, that will actually arrive, and in HTML???

View Replies !
Emailing An HTML Form
I want to make a "reservation page" where the customer can fill out a "contract", check it, and submit it to the company. (and then have the "contract" print out automatically with signature lines etc.)

I want the company to recieve the email so that it looks exactly like the "contract" that printed out for the customer. I've made the HTML form. Figured out how to echo the info to have it reviewed. Code:

View Replies !
My Form Vs. HTML Tags
I have a form to post content to my site that supports bbcode, but if wanted, anyone can introduce html tags.

The only thing I need is something to cancel the html tags, to do not accept < and > as html delimiters, but as normal characters.

View Replies !
Inserting Form Html
What I am doing is editing the paypal form link so that when the user adds a price to the database it will automatically create the paypal form as well.

The only problem I am having is that I can not get the html to insert into the database as it just says that I have an error in my SQL syntax where the first URL is as the form action. Code:

View Replies !
HTML Email Form
Ive got a script running that allows users to enter information which we receive via email. I want to put a drop down menu on the form where users select "Sales/Support/Marketing" etc. How do I amend the PHP code so that it sends the email to the selected department?

View Replies !
HTML Form Field Value
I am creating a html form which has 5 html list menu and menu value get store in array after hitting submit button. The value stores in PHP array and then print on same page and then after re checking the value If i want modification then click the edit button and value re store in the same html form. Here we are not using the database.

View Replies !
Inserting $ Into Html Form
I want to input a bit of php into this code.

<input type="hidden" name="item_name" value="<?php '$name'?>">

I need it for a paypal 'add to cart' button. I have tries various quotes and brackets but just can't seem to sort it.

View Replies !
Echoing Html Form
I have a script that on a condition it will display a form to enter data into. You will find the code below, followed by the problem (hopefully not too hard): Code:

View Replies !
Html Form Error
i have puted all my html code in database to make life easier and pages load faster. How ever, i have made back door in the web site where you big form and where you can edit everything from that control panel. Problem is that when it gets data from database and shows it on FORM it automaticly shows it as a build in html on the page and no in the filed. I will show you what i mean:

THIS IS A FORM BY THE WAY
This is what value in code : value="<?php echo "$pagetitel"; ?>"#
This is value when generated :

value="<font size="4">Your Web Site Name</font><br><hr>"

View Replies !
Insert/Add Row In HTML Form
I am trying to find out a way to have the user input as many rows as they desire, right now I only have a form where user can only input one row of data, I am wondering if there is a button lets say named "Add Row", after clicking it, the user can then add row into the database automatically? It might be vague, so let me describe it in a more concrete way. Lets say if I need user to enter a receiving report, the record includes date, sender, contents of shipment, qty.

View Replies !

Copyright 2005-08 www.BigResource.com, All rights reserved