Jump to content

vinpkl

Members
  • Posts

    448
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

vinpkl's Achievements

Regular Member

Regular Member (3/5)

0

Reputation

  1. Hi all I am using magnific popup script to open two popups. First popup is opening on click of a link. Second popup is opening automatically on page load after 5 second interval. Now i want is, if First magnific Popup is already opened, then second magnific popup should not open till first is open. How can i do it ?? here is a codepen http://codepen.io/vineet/pen/EjvxLN Thanks Vineet
  2. Hi Barand This worked perfect. Thanks Vineet
  3. Hi i have below format date and time stored in database 2015-06-06 02:13:54 How can i reformat it, so it displays as 06-06-2015 02:13:54 Thanks Vineet
  4. Hi Gizmola thanks for this solution. if worked for me thanks vineet
  5. Hi How can i create a client id which is 64 bit integer as described on this below link https://developers.google.com/analytics/devguides/collection/protocol/v1/email#client-id-cid thanks Vineet
  6. Hi fastsol What is the solution for the tracking text emails, in which images are not displayed or email type is not html thanks vineet
  7. Hi fastsol If instead of an fake transparent image, if i want to have an original image say my logo image <img src="logo.jpg?track.php?id=123" > Will it be fine to have two "?" signs in the url or img src. vineet
  8. Hi I have read on internet that the companies track email as "open" by inserting an transparent image. But i am not able to found what actually they insert into the source code of that image that marks or updates in the database as "open". Do they insert an update query into the source code of image ?? Can please tell me a example with img src ?? Thanks Vineet
  9. Hi Ch0cu3r Thanks for the explanation vineet
  10. Hi If i run the below script then both the dates are displayed after delay of 15 seconds. But i think 1st date should get displayed instantly and 2nd should get display after 15 seconds. But its not happening ?? <?php echo date('H:i:s'); sleep(15); echo "<br>"; echo date('H:i:s'); ?> Vineet
  11. Thanks Cyberrobot Got it working now Vineet
  12. Hi all I want to show subcategories on only the selected dealer But the below code is showing subcategories on all dealers. » Blackberry (3) » Battery (2) » Samsung (1) » Battery (1) If Blackberry dealer is selected then only its subcategories should be visible. Samsung subcategories should be hidden. <?php $qry_sub="select distinct s.subcid, s.subname from subcategories as s INNER JOIN producttable as p ON s.subcid = p.subcatg and p.dealerid = ".$dealer_id." and p.status='Y'"; //echo $qry_sub; echo "<ul>"; $result_sub=mysql_query($qry_sub); while($row_sub=mysql_fetch_array($result_sub)) { echo "<li></li>"; } echo "</ul>"; ?> Thanks Vineet
  13. Hi can anyone tell me why this code is not working in chrome emulator You can select devices like "Google nexus 4, Google nexus 5" or similar which has width less than 480 Border and padding is not getting applied. Floating is also not working ?? <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <style type="text/css" media="screen"> @media screen and (max-width:480px){ .firstcol{width:90%; border:1px solid #ff0000; padding:10px; font-size:2em} .secondcol{width:90%; border:1px solid #ff0000; padding:10px; font-size:2em} } @media screen and (min-width:600px) and (max-width:800px){ .firstcol{width:42%; float:left; border:1px solid #ff0000; padding:10px; font-size:2em} .secondcol{width:42%; float:left; border:1px solid #ff0000; padding:10px; font-size:2em} } </style> </head> <body> <div class="firstcol">This is the first column</div> <div class="secondcol">This is second column</div> </body> </html> Thanks Vineet
  14. Hi I have an old ecommerce website in which all queries are based on LOGIN ID. select * from user_table where user login id = '$loginid' Now i have a requirement of creating "CHECKOUT AS GUEST" feature. So should I create TWO separate database tables for Member and Guest. OR Single table for both. And Then on what basis shall i do the queries. So that my queries should work in both case, whether user is a MEMBER or a GUEST. Thanks Vineet
  15. Hi I want to import 4MB sql file into Phpmyadmin in xampp But on import page the limit is to 16384 Kib see screenshot http://s30.postimg.org/5tkeybnu9/16kib.gif How can i increase this limit In Xampp/php/php.ini i have already set post_max_size = 128M upload_max_filesize = 128M Does anyone has a solution to this problem ?? Thanks Vineet
×
×
  • 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.