Hi

I have page A text, that I wish to have entered into page B text fields.
The usual procedure to transfer data between pages are sessions.
But for argument sake I am denied the access of sessions how else am I able to automatically enter the text and submit the page it self?

Thanks, Regards X

PS: I think the answer is fopen but I would require more details on how to read the tag name, enter the text, submit it, etc.

Recommended Answers

All 3 Replies

Hi

I have page A text, that I wish to have entered into page B text fields.
The usual procedure to transfer data between pages are sessions.
But for argument sake I am denied the access of sessions how else am I able to automatically enter the text and submit the page it self?

Thanks, Regards X

PS: I think the answer is fopen but I would require more details on how to read the tag name, enter the text, submit it, etc.

put the text in one file eg. Atext.php

Atext.php
$mytext = "your text here.............";


on Bpage.php
include "Atext.php";

then call the variable $mytext on pageB.

Heres a link I found after googling your issue. Does use jquery though. But check it out, might be helpful

Maybe I did not explain myself clearly.
I would like to enter text in a third party text field.
That simple, via the use of php as there is some automation involved.
The JQuery article i will start reading now, ill let you know. Thanks.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.