Jump to content

UpcomingPhpDev

Members
  • Posts

    52
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

UpcomingPhpDev's Achievements

Member

Member (2/5)

0

Reputation

  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>"; ?>
×
×
  • 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.