- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
Re: I'm applying now this javascript. I hope this one is right for your case. <button class="excel-export" id="btnExport">Export to Excel</button> <script type="text/javascript"> $("#btnExport").click(function(e) { window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#dvData').html())); e.preventDefault(); }); </script> <div id="dvData"> <table> </table> </div> | |
Hello, I have a file (01.php) <?php abstract class Sender { const E_NEW_APPOINTMENT = 1; /** * Send instant confirmation/notification emails. * * @param int $type (E_NEW_APPOINTMENT) * @param CustomerAppointment $ca */ public static function sendEmails( $type, CustomerAppointment $ca ) { list ( $codes, $staff, $appointment, $customer ) = self::_prepareData( … | |
Hello, please tell me how to make auto filter between two search inputs? For exemple: while I choose a Zip code on list, then list of City name is filterd automatic according to this Zip code. These are my code: // Connect to db: $dsn = "mysql:host=".DB_HOST.";dbname=".DB_NAME; $db = new … ![]() | |
Hello, my Wordpress is using now LayerSlider. However, for the image layer content (not image background slider), how I can apply the hover effect?  And, these are the code using now by LayerSlider: <a alt="" data-ls="offsetxin:0;delayin:3500;easingin:linear;fadein:false;offsetxout:0;easingout:linear;fadeout:false;" style="top: 400px; left: 141.5px; display: block; margin-left: 0px; margin-top: 0px; transform-origin: 50% … | |
Hello, my Wordpress is using now LayerSlider. However, for the image layer content (not image background slider), how I can apply the hover effect?  And, these are the code using now by LayerSlider: <a alt="" data-ls="offsetxin:0;delayin:3500;easingin:linear;fadein:false;offsetxout:0;easingout:linear;fadeout:false;" style="top: 400px; left: 141.5px; display: block; margin-left: 0px; margin-top: 0px; transform-origin: 50% … | |
Hello, This is my case: - In file abc.php, I have mentionned two other file as two tabs (tab1.php and tab2.php). Their links are: abc.php#tab1 and abc.php#tab2 - On tab2.php, I have a form: <form action="" method="POST"> <select name="slot" id="slot"> <option value="1"> <option value="2"> <option value="3"> </select> <input type="submit" value="Update" … | |
Hello, I'm looking for the download solution from data on MySql to file .ical aims to import to Outlook Calendar. Do you have something to share with me? Thank a lot. ![]() | |
Hello, please help me sold this issue. It can read the content on the MySql table but when I change the value on the input, then click on Submit, nothing is updated on the table. I don't know why. <?php global $wpdb, $current_user; $user_id = get_current_user_id(); $sql = 'SELECT `slot`, … | |
Hello, after print my query print_r ($code_2); I have received the result which has the duplicate array. Please help me to merge them! Thanks. Array ( [0] => stdClass Object ( [id] => 1 [name] => admin [phone] => 353534545 [notes] => ) ) Array ( [0] => stdClass Object … | |
Hello, could you help me to make the submit button work! Thank you so much! <?php class XooWooCommerce { /** * Edited by HTC */ function show_my_schedule() { global $wpdb, $current_user, $xoouserultra; $user_id = get_current_user_id(); $sql = 'SELECT `id`, `member` FROM ab_staff WHERE `wp_user_id` = "' . (int)$user_id. '"'; $msgs … |
The End.