Jump to content

UpcomingPhpDev

Members
  • Posts

    52
  • Joined

  • Last visited

    Never

Everything posted by UpcomingPhpDev

  1. Hey guys, So im using this simple tabs script, But basically the problem im having is Im using the same content in the tabs TWICE per page Basically, I have 2 tabs, in each tab is some content, I copy paste the code in the top on the page, and in the footer of the page But the footer tabs dont work. The code im using is this <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Simple Tabs</title> <script type="text/javascript"> <!-- var tabsClass = { tabSetArray: new Array(), classOn: "tabs_on", classOff: "tabs_off", addTabs: function (tabsContainer) { tabs = document.getElementById(tabsContainer).getElementsByTagName("div"); for (x in tabs) { if (typeof(tabs[x].id) != "undefined") { this.tabSetArray.push(tabs[x].id); } else {} } }, switchTab: function (element) { for (x in this.tabSetArray) { tabItem = this.tabSetArray[x]; dataElement = document.getElementById(tabItem + "_data"); if (dataElement) { if (dataElement.style.display != "none") { dataElement.style.display = "none"; } else {} } else {} tabElement = document.getElementById(tabItem); if (tabElement) { if (tabElement.className != this.classOff) { tabElement.className = this.classOff; } else {} } else {} } document.getElementById(element.id + "_data").style.display = ""; element.className = this.classOn; } }; --> </script> <style type="text/css"> <!-- .tab_content { border: 1px solid #669CCC; padding-bottom: 15px; } #tabContainer { padding-bottom: 0px; margin-bottom: 0px; display: block; } #tabContainer div { padding-bottom: 5px; padding-right: 8px; padding-left: 8px; font-weight: bold; margin-left: 5px; padding-top: 5px; color: #000000; float: left; } #tabContainer .tabs_on, #tabContainer .tabs_off { border-bottom-color: #669CCC; border-right-color: #669CCC; background-position: bottom; border-left-color: #669CCC; border-bottom-style: solid; background-color: #EFEFEF; border-right-style: solid; border-top-color: #669CCC; border-left-style: solid; border-bottom-width: 0px; border-right-width: 1px; border-top-style: solid; border-left-width: 1px; border-top-width: 1px; cursor: pointer; } #tabContainer .tabs_on { background-color: #BBBBBB; } --> </style> </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><div id="tabContainer"> <div id="tab_1" class="tabs_on" onclick="tabsClass.switchTab(this);">General Information</div> <div id="tab_2" class="tabs_off" onclick="tabsClass.switchTab(this);">Demographics</div> </div></td> </tr> <tr> <td><div id="tab_1_data" class="tab_content"> tab 1 content </div> <div id="tab_2_data" class="tab_content" style="display: none;"> tab 2 content </div> <script type="text/javascript"> <!-- tabsClass.addTabs("tabContainer"); --> </script> </td> </tr> </table> </body> </html> Im sure there is a simple fix, But I dont know much Js Basically, Im repeating the last block in the footer of my page, Thanks in advance
  2. Actually, It works, Thanks mjdamato, I didnt notice you didnt suply a . after the form " " works too thanks!
  3. No this doesnt work mjdamnto, Any other advice? Thanks
  4. Basically, I have this problem, How can you call a name in a html form that is the the array format E.g <input name="Unit[]" /> When calling it from a child window to its parent, It doesnt work E.g window.opener.document.Form.Unit[].value = Item; Any advice? Thanks!
  5. Hey guys, I have this code below, that is working fine, But When the user pressed add field, Id like it to create 2 new fields. Ive tried editing it, But as my knowledge of Js/DOM isnt very good, I cant seem to do it. Thanks in advance! <form method="post"> <p id="parah">Click below to dynamically create/remove input boxes in this field</p> <a href="javascript:addInput()">Add Field</a><br> <a href="javascript:deleteInput()">Remove Field</a> <input type="submit" /> </form> <script type="text/javascript"> var arrInput = new Array(0); var arrInputValue = new Array(0); function addInput() { arrInput.push(arrInput.length); arrInputValue.push(""); display(); } function display() { document.getElementById('parah').innerHTML=""; for (intI=0;intI<arrInput.length;intI++) { document.getElementById('parah').innerHTML+=createInput(arrInput[intI], arrInputValue[intI]); } } function saveValue(intId,strValue) { arrInputValue[intId]=strValue; } function createInput(id,value) { return "<input name='field["+ value +"][]' id='test "+ id +"' onChange='javascript:saveValue("+ id +",this.value)' value='"+ value +"'><br>"; } function deleteInput() { if (arrInput.length > 0) { arrInput.pop(); arrInputValue.pop(); } display(); } </script>
  6. I thought you said you tried it Yeh seems I did say that, Sorry, If I did try that I would have used it wrongly. Thanks for ur help
  7. I think you need Js for the way you wrote the question. Php would do it, But it would have to refresh the page
  8. Just bumping as its on page 2, Thanks
  9. You could just use a simple replace <?php $Number = str_replace(",","",$Number); $Number = str_replace("$","",$Number); ?> If you have more things to remove, Just place them in a array and call str_replace once.
  10. Dont know whats wrong my side then, Thanks still Yeh this works. Thanks! forgot about the recursive feature
  11. Can you insert something like <?php function sendmail() { if ($_SERVER["REQUEST_METHOD"]=="POST"){ // now we'll process our uploaded files foreach($_FILES as $userfile){ // store the file information to variables for easier access if(!empty($userfile)) { $tmp_name = $userfile['tmp_name']; $type = $userfile['type']; $name = $userfile['name']; $size = $userfile['size']; } // if the upload succeded, the file will exist if (file_exists($tmp_name)){email();} else {nofile();} } } } ?>
  12. No this still isnt working, Have yo actually tested your code? I tried this before I belive as its logical to do so. Thanks
  13. with the basic windows extract and have also tried with winrar
  14. Hey guys, Im basically adding some php and css files into a folder then zipping them with the AddFile:: syntax But the problem is all zips are coming out as corrupt when i try to open them on windows. Do you know wat the problem can me? Heres a example code <?php $Zip = new ZipArchive(); $Zip->open("Scripts/$FileName", ZipArchive::CREATE); $Zip->addFile("Index.php","Index.php"); $Zip->addFile("Css.css","Css.css"); $Zip->addFile("Footer.php","Footer.php"); $Zip->close(); ?> Thanks for reading
  15. Hey again, Yes, It seems I am having another problem with multi dimensional arrays. Basically, I want to strip html, trim, and rmeove whitespace characters from my Array Array's Ive tried, array_walk,Array_map, Array_walk_recursive, Plus other self built functions, But I just cant do it. My array keys arnt numeric. Heres an example code to work with, Hope some1 here maybe able to solve it. Thanks <?php $Array = array(array(" RedArrow", "<p>Php)); print "<PRE>"; print_r($Array); print "</PRE>"; ?>
  16. Lol Lol, Nice db password (pwd removed...)
  17. You could try replacing empty for isset.
  18. I dont know OOP, So dont fully understand it. But as for coding, Good Indentation Commenting your code for later Good spacing Thats the best you can do I belive, Nice
  19. Ok thx, Il checkout those Js links, ANd maybe the php books Laters
  20. Is the header location ABOVE the <head> tags? Otherwise header information has already been sent
  21. Haha, Yeh the 24 hour book is funny, Its possible to read all in 24 hour, But then wen u wake up the next day, Its all forgotten. I only know Html Css Php(intermediate) SEO Im just starting to learn javascript, can you recommend some good books? Thanks
  22. Thanks haha, But I really didnt get it right first time, I have been trying for many hours now First I gave up a few days ago and made all seperate variables, But then yesterday I wanted to try again. Then today I spent around 4-5 hours of editing and remaking the code etc. I tried over 15 array fucntions over and over again, haha, Some I didnt even know before. If I didnt get it eventually, I would of broke my PC I think. Btw, I noticed you are from London, are you employed as a php programmer? php Jobs are hard to get in london, I live there too.
  23. how about something like if (empty($username)) { echo "Please enter a username."; } elseif (empty($password)) { echo "Please enter a password."; } elseif (empty($email)) { echo "Please enter a valid email."; } else { $result = mysql_query($sql); EDIT - I see redarrow has already posted this, Sorry.
  24. hahaha, I think already I am confused by it, Their is too many loops to track for me, This is the first time I used multidimensional array But Basically what is happening is foreach($Country as $CountryId) { INSIDE COUNTRY ARRAY (NY AND CA) while($CountryId = current($Country)) { $New = implode("\n",$CountryId); $New = explode("\n",$New); WHILE WE ARE INSIDE NY ARRAY, CONVERT THE ARRAY TO A STRING, THEN CONVERT BACK TO ARRAY foreach($New as $Key) { unset($Country[key($Country)][0]); array_push($Country[key($Country)],$Key); } WHILST WE ARE IN NY, WE UNSET THE [0], ([0] = the value with no line break) FOR EACH KEY INSIDE NY Array, ADD TO THE CURRENT SELECTED ARRAY(WHICH IS NY) next($Country); } NOW WE ARE BACK INTO THE MAIN ARRAY LOOP, WE HAVE ADDED ALL KEYS AND VALUES IN THE NY ARRAY TO NY, SO WE GO NEXT, INTO THE CA ARRAY, AND THEN THE LOOP GOES THROUGH IT ALL AGAIN. } Sorry for the caps, Hope you understand it now and can maybe use this in future.
  25. Remove the first Print_r, It was only here for you to see what was happening.
×
×
  • 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.