Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jsnull

  1. jsnull

    CKFinder / CKEditor

    I am using CKFinder to upload files to my site where all my users should have their own folder storing their own files in them. My desired result is that the folder for user files uploaded will be ckfinder/userfiles/$USERNAME I have the following information in the config.php file of CKFinde...
  2. jsnull

    PHP and Javascript

    vacunita - I put your code here www.chenetwork.org/test1.php and I'm not getting anything when I submit the form and then loop through all the values? Jim Null
  3. jsnull

    PHP and Javascript

    jpadie - very nice on our last post. I have it here at www.chenetwork.org/test2.php ... now how would I transform this to post to grab it via php? Jim Null
  4. jsnull

    PHP and Javascript

    jpadie that's awesome! I copied their code boxes onto www.chenetwork.org/test.html and, when clicking one of the bullets it doesn't move. There must be something missing in it. <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <style type="text/css">...
  5. jsnull

    PHP and Javascript

    Ok .. using the uls intrigues me .. how would I do that? Jim Null
  6. jsnull

    PHP and Javascript

    That's beautiful - absolutely love it! When selecting countries and posting, though, PHP returns nothing. See: http://www.chenetwork.org/test.php I am using this php code to check what is posted. $listvals=$_POST['ToLB']; $n=count($listvals); if ($n == 1){$country = $listvals[0];}...
  7. jsnull

    PHP and Javascript

    I have 2 select boxes, with Javascript, that moves a selection from one to another. The one moved to is a multiple select box. To get all of the items in the box via PHP after submission I have named it "ToLB[]" .. with brackets for php array form submission. However, when I add the brackets...
  8. jsnull

    Refresh PHP Page After Submitting CSV File Export From MYSql

    Hi looking for a solution where I have a php page, export.php, that has a form where a user can click, which opens exportdo.php, exportdo.php opens and runs the csv export and the file downloads while I remain at export.php. What I am looking for is how to refresh export.php, after the CSV file...
  9. jsnull

    Adding &quot;X&quot; Days to a date in PHP

    jpadie - perfect! Works like a charm. Thank you for the help! Jim Null
  10. jsnull

    Adding &quot;X&quot; Days to a date in PHP

    vacunita - that would great it the number of days was always two days. In the code example provided $TnumberDays of days is pulled from a database so it can be any number of days. Your thoughts? Jim Null
  11. jsnull

    Adding &quot;X&quot; Days to a date in PHP

    Thank you jpadie for your reply ... that results in an end date of: End: 1970-01-01 Still looking for an end date that is two days after the starting date. Your thoughts most welcome! Jim Null
  12. jsnull

    Adding &quot;X&quot; Days to a date in PHP

    Here is my code: $TmoveDATE = "2015-06-30"; // start date $TremoveDate = time($TmoveDATE); // converts value to time $TnumberDays = $TnumberDays * 24; // converts days to hours $TnumberDays = $TnumberDays * 60; // converts hour to minutes $TnumberDays = $TnumberDays * 60; // converts...
  13. jsnull

    Remote MYSql w/ Access 2010

    I fail to access MySQL using Access 2010 using Oracle connector, as well as the connector that comes with 2010 ... any suggestions are welcome. Problem seems to be how Access 2010 handles the password encryption. Jim Null
  14. jsnull

    Get Two Users Where Column Equals Two Different Varaibles

    Perfect! Thank you! Jim Null
  15. jsnull

    Get Two Users Where Column Equals Two Different Varaibles

    Trying to figure out how to get the usernames of users who are flagged in two networks. For example: my table is laid out as id, username, network. User jim can be in network ABC and in network XYZ thus there would be a record for each DATA EXAMPLE id, username, network 1, jim, ABC 2, jim...

Part and Inventory Search

Back
Top