Jump to content

n3r0x

Members
  • Posts

    33
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

n3r0x's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. is_uploaded_file checks it the specified file is uploaded on the local server. To check for success you would need to enterremote server and check if the file exists there..
  2. <?php if (($row_Recordset4['multidirection']=="yes") && ($_POST["widthcheck"] < $row_Recordset4['drop'])) echo $row_Recordset4['width']; else echo $row_Recordset4['drop']; // <== Was missing an ; here ?> not sure what the problem is, do you get a different result than you wanted or?
  3. simplest way would be using regexp and preg_replace adding the regexp into 1 array and replace with in another.. then just loop through it..
  4. would do something like this. $storage_array = array(); // Split it into rows $parts = explode("\n",$file); $x=0; // For each row foreach ($parts AS $v) { // This one depends on the format of your file if they use tab it should have \t and so on // Split into elements $storage_array[$x] = explode("\t",$v); ++$x; }
×
×
  • 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.