Jump to content

[SOLVED] copy() on submit. Not when page loads


Recommended Posts

I'm copying an html file with a different name for my script and it works fine.  I just need it to copy when I press submit instead of when the page loads.

 

The copy code:

<?php
$file = './x/x.html';
$newfile = "./x/x/".$rnd_id. "" .".html";

if (!copy($file, $newfile)) {
    echo "failed to copy $file...\n";
}
?>

 

My current submit button:

		<input type="submit" value="Post" />

PHP is server-side, meaning it executes before anything is loaded to the client. So, you can't use PHP's copy() without reloading the page.

 

Or can you... Look into AJAX, it may help you out with your problem.

I just need it to copy when I press submit instead of when the page loads.

 

From reading that my first thought is "Oh so the OP want's to do it without reloading the page. Meaning client-side, not server-side."

 

Isn't that what the OP was asking? ???

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.