Display .txt file content as an Input

R

Rhonda

I'm trying to display a stored text document(number) as an Input on a form.
I can display the number/value as follows using iframe:

<iframe src="counter.txt" width="50" height="20" frameborder="0" border="0"
scrolling="no" marginheight="0" marginwidth="0"></IFRAME>

But I can't find the syntax to populate Input, like:
<input type="text" name="order_num" src="counter.txt"" /></td></tr>

I must populate a named Input with my value for my PHP script to process it
with my other form fields.

Any suggestions appreciated.
 
M

Mark Parnell

<input type="text" name="order_num" src="counter.txt"" /></td></tr>

Since the src attribute doesn't exist for <input> elements, it's not
surprising the above doesn't work.

Since you're using PHP already:

<input type="text" name="order_num" value="<?php include("counter.txt");
?>">
 
R

Rhonda

Mark Parnell said:
Since the src attribute doesn't exist for <input> elements, it's not
surprising the above doesn't work.

Since you're using PHP already:

<input type="text" name="order_num" value="<?php include("counter.txt");
?>">

That syntax produced: [ <?php include( ] in the input field, and
?>">
outside of the input.
 
O

Oli Filth

Rhonda said:
Mark Parnell said:
Since you're using PHP already:

<input type="text" name="order_num" value="<?php include("counter.txt");
?>">

That syntax produced: [ <?php include( ] in the input field, and
?>"> outside of the input.

Change the HTML file to a .php extension.
 
M

Mark Parnell

That syntax produced: [ <?php include( ] in the input field, and
?>">
outside of the input.

Ah, I misunderstood your setup (a good reason to include a URL). The
page containing the form will need to be a PHP file, as well as the
script that processes the form submission.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top