Jump to content

jeffreyappel

Members
  • Posts

    70
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by jeffreyappel

  1. The values of shell environment variables can be used in configuration file lines using the syntax ${ENVVAR}. If "ENVVAR" is the name of a valid environment variable, the value of that variable is substituted into that spot in the configuration file line, and processing continues as if that text were found directly in the configuration file. (If the ENVVAR variable is not found, the characters "${ENVVAR}" are left unchanged for use by later stages in the config file processing.)
  2. You are not specific to the problem.Anyway,follow the link that may help you.http://aws.amazon.com/articles/1044/
  3. Try running php -r 'dl("mysqli.so"); phpinfo();' | grep mysqli to check if the module load normaly with dl() function. As you are using Linux, change extension=php_mysqli.dll to extension=mysqli.so. In your php.ini you may want to uncomment ; extension_dir = "./" and put the correct path to your extensions. Also, enable enable_dl = On to use the dl() function to test.
  4. "last-of-type " should be applied on <p>. This give you some idea: #hexagon_container { float:left; width:100%; background:#feb914; } .services_hexagon { float:left; display:block; width:100%; height:100%; padding-bottom:13%; margin-right:13.33%; text-indent:-3000px; background:url('pics/octagons/oct_gd.png') center top; background-size:cover; } .services_hexagon:last-of-type { margin-right:0px; } .services_hexagon:hover { background-position:center bottom; background-color: yellow; }
  5. write an event handler and store the result in a variable.Another way use flag.
  6. here you go: .container { width: 100%; margin: 0 auto; #background-color: #000; padding:5px; } .left { float: left; width: 45%; margin-top:10px; padding: 5px; #padding-bottom: 8em; } .right { float: left; width: 45%; margin: 0; padding:5px; #padding-bottom: 8em; }
  7. what you need to do is URL redirection that you would found in the hosting panel.
  8. Following example may help you: <!DOCTYPE html> <html> <body> <p>Enter some text in the fields below, then press the "Reset form" button to reset the form.</p> <form id="myForm"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br><br> <input type="button" onclick="myFunction()" value="Reset form"> </form> <script> function myFunction() { document.getElementById("myForm").reset(); } </script> </body> </html>
  9. trying adding these headers to the top of the page: header("Cache-Control: private, max-age=10800, pre-check=10800"); header("Pragma: private");header("Expires: " . date(DATE_RFC822,strtotime("+2 day"))); if the form submits and post data to a second page, you may want to put it at the top of both pages. also, make sure the code is after any session_start(); if you are using sessions.
  10. i suggest make the iFrame invisible to make harder for clickjacker.
  11. Here you go: <!DOCTYPE html> <html lang="en"> <head></head> <body> <form action="send_form_email.php" id="contacts-form" method="post"> <fieldset> <div class="grid3 first"> <label>Name:<br/> <input type="text" name="name" value="" id="name" /> </label> <br/><label>E-mail:<br/> <input type="email" value="" name ="email" id="email" /> </label> </div> <div class="grid3">Message:<br/> <textarea name="comment" cols="45" rows="6" id="comment" class="bodytext"></textarea> <div class="alignleft"> <a href="#" class="alt" onClick="document.getElementById('contacts-form').reset()">Clear</a> <a href="#" class="alt" onClick="document.getElementById('contacts-form').submit()">Submit</a> </div> </div> </fieldset> </form> </body> <?php if(isset($_POST['submit'])){ $to = "email@example.com"; // this is your Email address $from = $_POST['email']; // this is the sender's Email address $subject = 'Site contact form'; $message = "Name: ".$_POST["name"]."" . "Email: ".$_POST["email"]."" ."Comment: ".nl2br($_POST["comment"]).""; $message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message']; $headers = "From:" . $from; $headers2 = "From:" . $to; mail($to,$subject,$message,$headers); echo "Mail Sent. Thank you " . ?> </html>
  12. This is another version i proposed: <!DOCTYPE html> <html lang="en"> <head></head> <body> <select name="age" > <option value="18">18</option> <option value="19">19</option> </select> <div class='selectBox' style="padding:5px;"> <span class='Arrow'>â–¼</span> <select name="Option" > <span class="selectOption"><option value="Option 1">Option 1</option></span> <span class="selectOption"><option value="Option 2">Option 2</option></span> <span class="selectOption"><option value="Option 3">Option 3</option></span> </select> </div> </body> </html>
  13. This may help you get any idea.... <!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> </head> <body> <div class="container"> <label>Pet Type:</label> <select name="PetType" class="type" id="ptype"> <option id="zero" value="0">Please select</option> <option id="one" value="Cat">Cat</option> <option class="two" id="two" value="Dog">Dog</option> </select> <label id="breed">Bog Breed:</label> <select name="Breed" class="breed"> <option value="0">Please select</option> <option value="PitBull">Pit Bull</option> <option value="Lab">Lab</option> <option value="Chihuaua">Chihuaua</option> <option value="Terrier">Terrier</option> <option value="German Shepherd">German Shepherd</option> <option value="Other">Other</option> </select> </div> <script> $(document).ready(function(){ $(".breed").hide(); $("#breed").hide(); }); $(document).ready(function(){ $("#ptype").change(function (event) { alert("You have Selected :: "+$(this).val()); }); }); </script> </body> </html>
  14. I have an alternate way: <!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <style> </style> </head> <body> <button class="button1">button 1</button> <button class="button2">button 2</button> <script> $(document).ready(function(){ $(".button1").click(function(){ $(".button1").hide(); $(".button2").show(); }); $(".button2").click(function(){ $(".button2").hide(); $(".button1").show(); }); }); </script> </form> </body> </html>
  15. for your convenience i got this: <!doctype html> <html lang="us"> <head> <meta charset="utf-8"> <title>jQuery UI Example Page</title> <link href="jquery-ui.css" rel="stylesheet"> <style> body{ font: 62.5% "Trebuchet MS", sans-serif; margin: 50px; } .demoHeaders { margin-top: 2em; } #dialog-link { padding: .4em 1em .4em 20px; text-decoration: none; position: relative; } #dialog-link span.ui-icon { margin: 0 5px 0 0; position: absolute; left: .2em; top: 50%; margin-top: -8px; } #icons { margin: 0; padding: 0; } #icons li { margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none; } #icons span.ui-icon { float: left; margin: 0 4px; } .fakewindowcontain .ui-widget-overlay { position: absolute; } select { width: 200px; } </style> </head> <body> <h1>Welcome to jQuery UI!</h1> <div class="ui-widget"> <p>This page demonstrates the widgets and theme you selected in Download Builder. Please make sure you are using them with a compatible jQuery version.</p> </div> <h1>YOUR COMPONENTS:</h1> <!-- Accordion --> <h2 class="demoHeaders">Accordion</h2> <div id="accordion"> <h3>First</h3> <div>Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.</div> <h3>Second</h3> <div>Phasellus mattis tincidunt nibh.</div> <h3>Third</h3> <div>Nam dui erat, auctor a, dignissim quis.</div> </div>
  16. This is a div problem. Logo,Menu,Ad Area and search box...put each of them into a separate div, then put all together into a container div.After then you can place anything in any place you want by applying CSS.
  17. yes you can do this.Because the 'woocommerce ' is optional.
  18. I think its the validation code that are not accepting special characters.FInd form code and add all those special characters in the code , (for your convenience, see where alphabets letters listed. )
  19. find element 'logo_width' or 'logo_height' in the css file and change the value. cheers
  20. You question is not so clear.Anyway, seems its a simple inner join case.An SQL INNER JOIN return all rows from multiple tables where the join condition is met. Example: SELECT Orders.OrderID, Customers.CustomerName, Orders.OrderDate FROM Orders INNER JOIN Customers ON Orders.CustomerID=Customers.CustomerID; Order:Table OrderID CustomerID OrderDate 10308 2 1996-09-18 10309 37 1996-09-19 10310 77 1996-09-20 Customer Table: CustomerID CustomerName ContactName Country 1 Alfreds Futterkiste Maria Anders Germany 2 Ana Trujillo helados Ana Trujillo Mexico 3 Antonio Moreno Taquería Antonio Mexico
  21. select * from tbl where somthing LIKE 'somthing'
  22. This is the percentage of animation duration.If you use 20% this means when the whole duration is 100sec then20% is 20 sec.
  23. I can see you didn't use webkit and need more styling on 'select'. cheer
  24. Take a container div and put four div instead of four span into it and use floating .
×
×
  • 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.