Jump to content

doddatika

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

doddatika's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have the hidden filed like this: <input name="hiddenOne" value="" type="hidden"> <input name="hiddenTwo" value="" type="hidden"> A Button like this: <button name="aButton" type="submit" id="aButton" value="false">Edit</button> The javascript function: function clicked(){ document.getElementsByName('hiddenOne').value='Lauda'; document.getElementsByName('hiddenTwo').value='chut ka dhakkan'; document.EditStoryForm.submit(); } On the server side (PHP) I am trying to do the following: $FE[ 'titleStory' ] = $_POST[ 'hiddenOne' ]; $FE[ 'actualStory' ] = $_POST[ 'hiddenTwo' ]; But the following does not print anything echo $FE[ 'titleStory' ]; echo $FE[ 'actualStory' ]; What is happening? I am able to access the other form elements like “input”.
  2. PHP is the best for such purposes. I know java and PHP, so for stuff where-in you primarily plan to display data, PHP seems to be the best option.
  3. Does the timeout happen in around 30 secs? max_execution_time in php.ini has a value of 30 secs. Try changing this value and see what happens. There are other parameters in PHP.ini. Try changing them.
  4. Hey GURUs, I have a script that allows me to upload and extract files correctly. Howevr, I am unable to rename the files. I want to rename the files as they are extracted. I don't want to do that after extraction. Here is what I want to do: - - Upload the zip(Done) - - Extract the files from zip(Done) - - Rename the Files before I write the files to the Filesystem(Pending) - - Write the files to the FS(Done) Has nybdy evr tried it? Thanks in advance.
  5. Hey I wasted my time too. Right, I use WAMP on XPSP2. Just restarted the webserver and it all worked. Thanks alot guys. Dont forget to enjoy Life. !!!
×
×
  • 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.