• Member Avatar for patk570
    patk570

    Replied To a Post in Add social flags to bottom of bootstrap nav using css

    Here is what i have tried so far [jsfiddle](http://jsfiddle.net/hrdw6/)
  • Member Avatar for patk570
    patk570

    Replied To a Post in Add social flags to bottom of bootstrap nav using css

    Here is what i have tried so far [jsfiddle](http://jsfiddle.net/hrdw6/)
  • Member Avatar for patk570
    patk570

    Created Add social flags to bottom of bootstrap nav using css

    Hey everyone, I have navbar from boostrap, I am trying to get the flags to append to the bottom/hang from the bottom of the nav on right side. [Link](https://www.assets.patrickspcrepair.com/gotya/simple-sidebar.html) to …
  • Member Avatar for patk570
    patk570

    Began Watching Add social flags to bottom of bootstrap nav using css

    Hey everyone, I have navbar from boostrap, I am trying to get the flags to append to the bottom/hang from the bottom of the nav on right side. [Link](https://www.assets.patrickspcrepair.com/gotya/simple-sidebar.html) to …
  • Member Avatar for patk570
    patk570

    Marked Solved Status for Stop timer on hover

    Hey guys, I have a script that switches between tabs..It works perfectly, but what i am needing is a way for the script to stop when I have my mouse …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Stop timer on hover

    I fixed it! $(function() { var tabCarousel = setInterval(function() { var tabs = $('#tab-carousel .nav-pills > li'), active = tabs.filter('.active'), next = active.next('li'), toClick = next.length ? next.find('a') : tabs.eq(0).find('a'); …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Stop timer on hover

    Ok, so i got it to stop(clear the interVal) but now on mouseout i need it to start back up. I tried this: $(function() { var tabCarousel = setInterval(function() { …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Stop timer on hover

    here is what i tried: $('#tab-carousel').mouseover(function(){ clearInterval(tabCarousel); alert('timer stopped'); }, function(){ timer = setInterval( tabCarousel, 5000); alert('timer started'); });
  • Member Avatar for patk570
    patk570

    Replied To a Post in Stop timer on hover

    here is a working example of it..I still cannot get the event to stop on mouseover...[Click Here](http://67.166.42.64/index.html)
  • Member Avatar for patk570
    patk570

    Created Stop timer on hover

    Hey guys, I have a script that switches between tabs..It works perfectly, but what i am needing is a way for the script to stop when I have my mouse …
  • Member Avatar for patk570
    patk570

    Began Watching Stop timer on hover

    Hey guys, I have a script that switches between tabs..It works perfectly, but what i am needing is a way for the script to stop when I have my mouse …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Validate serial key using jquery

    The key is going to have dashes, and 20 characters long. 12345-67890-15975-14 if(!regkey.length == 20(plus dashes?) { alert(This key is not the required length); } Like that?
  • Member Avatar for patk570
    patk570

    Created Validate serial key using jquery

    Hello everyone, I am trying to get a code that will check the length of the a 'key' that will be generated in xxxxx-xxxxx-xxxxx-xx format. I need it to verify …
  • Member Avatar for patk570
    patk570

    Began Watching Validate serial key using jquery

    Hello everyone, I am trying to get a code that will check the length of the a 'key' that will be generated in xxxxx-xxxxx-xxxxx-xx format. I need it to verify …
  • Member Avatar for patk570
    patk570

    Marked Solved Status for Code will UPDATE but not insert...

    I am not sure why this is not working, Its setting the flags perfectly but will not update events... if(isset($_REQUEST['del'])){ if($_REQUEST['del'] == 1){ $asset_id = $_REQUEST['assetID']; $sql = "UPDATE assets, …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Code will UPDATE but not insert...

    Fixed it, I forgot to encapsulate the desc in ``desc`` such an idiot sometimes...
  • Member Avatar for patk570
    patk570

    Created Code will UPDATE but not insert...

    I am not sure why this is not working, Its setting the flags perfectly but will not update events... if(isset($_REQUEST['del'])){ if($_REQUEST['del'] == 1){ $asset_id = $_REQUEST['assetID']; $sql = "UPDATE assets, …
  • Member Avatar for patk570
    patk570

    Began Watching Code will UPDATE but not insert...

    I am not sure why this is not working, Its setting the flags perfectly but will not update events... if(isset($_REQUEST['del'])){ if($_REQUEST['del'] == 1){ $asset_id = $_REQUEST['assetID']; $sql = "UPDATE assets, …
  • Member Avatar for patk570
    patk570

    Marked Solved Status for Add links from table when scrolling

    Hi everyone, I am working on a site, just one page with all the information on it. What happens now is when I scroll down the page, and I get …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Add links from table when scrolling

    I solved this. THis is what i did: $(document).ready(function() { $('.bottomMenu').fadeOut(); $(window).scroll(function () { if ($(window).scrollTop() > 200) { $('#nav_bar').addClass('navbar-fixed-top'); $('.bottomMenu').fadeIn(); } if ($(window).scrollTop() < 201) { $('#nav_bar').removeClass('navbar-fixed-top'); $('.bottomMenu').fadeOut(); } …
  • Member Avatar for patk570
    patk570

    Created Add links from table when scrolling

    Hi everyone, I am working on a site, just one page with all the information on it. What happens now is when I scroll down the page, and I get …
  • Member Avatar for patk570
    patk570

    Began Watching Add links from table when scrolling

    Hi everyone, I am working on a site, just one page with all the information on it. What happens now is when I scroll down the page, and I get …
  • Member Avatar for patk570
    patk570

    Replied To a Post in send form details using sms

    all you need to do is create a php/html form then wien submitting the form details, have it send to the mobile number instead. It will come as a message …
  • Member Avatar for patk570
    patk570

    Marked Solved Status for insert date into mysql db

    Hi, I have 2 fields that are used for date. In my fucntion, i have it format the date into Y-m-d format, $purchase_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['purchase_date'])); $warranty_end_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['warranty_end_date'])); But when …
  • Member Avatar for patk570
    patk570

    Replied To a Post in insert date into mysql db

    I figured it out: $purchase_date = mysqli_real_escape_string($mysqli, date('Y-m-d', strtotime(str_replace('-','/',$_POST['purchase_date'])); $warranty_end_date = mysqli_real_escape_string($mysqli, date('Y-m-d', strtotime(str_replace('-','/',$_POST['warranty_end_date'])); worked, just forgot to upload it to the server. I thought it was uploaded haha!!!
  • Member Avatar for patk570
    patk570

    Revoked Solved Status for insert date into mysql db

    Hi, I have 2 fields that are used for date. In my fucntion, i have it format the date into Y-m-d format, $purchase_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['purchase_date'])); $warranty_end_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['warranty_end_date'])); But when …
  • Member Avatar for patk570
    patk570

    Marked Solved Status for insert date into mysql db

    Hi, I have 2 fields that are used for date. In my fucntion, i have it format the date into Y-m-d format, $purchase_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['purchase_date'])); $warranty_end_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['warranty_end_date'])); But when …
  • Member Avatar for patk570
    patk570

    Created insert date into mysql db

    Hi, I have 2 fields that are used for date. In my fucntion, i have it format the date into Y-m-d format, $purchase_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['purchase_date'])); $warranty_end_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['warranty_end_date'])); But when …
  • Member Avatar for patk570
    patk570

    Began Watching insert date into mysql db

    Hi, I have 2 fields that are used for date. In my fucntion, i have it format the date into Y-m-d format, $purchase_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['purchase_date'])); $warranty_end_date = mysqli_real_escape_string($mysqli,date('Y-m-d',$_POST['warranty_end_date'])); But when …
  • Member Avatar for patk570
    patk570

    Stopped Watching Need help on path to take next for website

    I'm developing a website for the time being to display my movie collection. I have been working on this project for a while now and I have the backbone almost …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Need help on path to take next for website

    I am using boostrap right now for my website, Great for mobile friendly!
  • Member Avatar for patk570
    patk570

    Revoked Solved Status for Insert Last Insert ID into another table

    Hi guys, I am trying to get the last_insert_id() from the table above, that way when it sends the query and is successful, it then updates the events table with …
  • Member Avatar for patk570
    patk570

    Marked Solved Status for Insert Last Insert ID into another table

    Hi guys, I am trying to get the last_insert_id() from the table above, that way when it sends the query and is successful, it then updates the events table with …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Insert Last Insert ID into another table

    I got it!!! here is what i did: if(isset($_POST['AddHardwareAsset'])){ $asset_tag = mysqli_real_escape_string($mysqli,$_POST['assetTag']); $serial_number = mysqli_real_escape_string($mysqli,$_POST['serialNumber']); $vendor = mysqli_real_escape_string($mysqli,$_POST['vendor']); $platform = mysqli_real_escape_string($mysqli,$_POST['platform']); $type = mysqli_real_escape_string($mysqli,$_POST['type']); $model = mysqli_real_escape_string($mysqli,$_POST['model']); $status = mysqli_real_escape_string($mysqli,$_POST['status']); …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Insert Last Insert ID into another table

    Hello, thanks for the reply, I did try that, and everytime I would enter it, it would just put a 0 in the events table.
  • Member Avatar for patk570
    patk570

    Created Insert Last Insert ID into another table

    Hi guys, I am trying to get the last_insert_id() from the table above, that way when it sends the query and is successful, it then updates the events table with …
  • Member Avatar for patk570
    patk570

    Began Watching Insert Last Insert ID into another table

    Hi guys, I am trying to get the last_insert_id() from the table above, that way when it sends the query and is successful, it then updates the events table with …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Need help on path to take next for website

    He can also just set the max height then have a scroll bar to show more.. .someclass{ height:250px; overflow:auto; }
  • Member Avatar for patk570
    patk570

    Began Watching Need help on path to take next for website

    I'm developing a website for the time being to display my movie collection. I have been working on this project for a while now and I have the backbone almost …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Need help on path to take next for website

    To have the divs have different height, set your css to .someclass{ height:auto; }
  • Member Avatar for patk570
    patk570

    Began Watching how to insert,edit,delete in single page in php

    how to insert,edit,delete in same page using php
  • Member Avatar for patk570
    patk570

    Replied To a Post in how to insert,edit,delete in single page in php

    What have you tried so far? Plus we would need database structure, information about what needs to be inserted, deleted and edited...
  • Member Avatar for patk570
    patk570

    Replied To a Post in Making a email form

    here is one with the mailform included. <?php //email if(isset($_POST['emailus'])) { $result = ""; $name = mysql_real_escape_string($_POST['cust_name']); // required $to_email = mysql_real_escape_string($_POST['opttwo']);// required $from_email = mysql_real_escape_string($_POST['email']);// required $message = mysql_real_escape_string($_POST['feedback']);// …
  • Member Avatar for patk570
    patk570

    Began Watching Making a email form

    Im trying to make a email form where people can visit our site and send us emails. Since I am not sure if I can add PHP code, lets stick …
  • Member Avatar for patk570
    patk570

    Replied To a Post in Making a email form

    here ya go! Copy and paste this: <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> * { margin:0; padding:0; border:0; outline:0; } body { …
  • Member Avatar for patk570
    patk570

    Began Watching send form details using sms

    hi all am trying to develop an application for mobile using html,the aim is to send form details without using server ie submiting form to a number instead of server, …
  • Member Avatar for patk570
    patk570

    Replied To a Post in send form details using sms

    just put the email address of your phone ie: +17775558855@tmobmail.net see complete list here: [Phone email list..](http://www.emailtextmessages.com/)
  • Member Avatar for patk570
    patk570

    Began Watching sending auto generated mail from register form

    please send me the code to generate an auto mail once the user clicks on the register button my register fields are first name,last name,date of birth,emailid i need the …
  • Member Avatar for patk570
    patk570

    Replied To a Post in sending auto generated mail from register form

    No one is going to write code for you. What have you tried so far?
  • Member Avatar for patk570
    patk570

    Replied To a Post in Visible scrollbars in div on mobile devices

    Another option would be to add an arrow that is fixed to the bottom of the div that show that there is more and disappears when they reach the bottom …

The End.