Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
85% Quality Score
Upvotes Received
15
Posts with Upvotes
14
Upvoting Members
10
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
5 Commented Posts
0 Endorsements
Ranked #1K
~46.2K People Reached
Interests
Travelling ? Sport? Programming?
Favorite Tags
Member Avatar for UK-1991

Hello, just created a code for login using encrypted password method when user is registering at that time i made a passsword encryption script. But the main problem is that when it comes to verify login how do i veryfy the password as that password is saved as encrypted password …

Member Avatar for tejpal_3
0
2K
Member Avatar for Lau_1

Hello, I am still confusing how to differentiate with responsive website and mobile web apps. Responsive website can auto configure to fit into the browser. Currently I had developed responsive website. So how about mobile web app? Is mobile web app launch using browser? How can this mobile web app …

Member Avatar for Lau_1
0
617
Member Avatar for Lau_1

Hello, anyone have any idea on how to display selected image in popup box? and then upload. Currently, the basic way is to display the selected image in a <div> tag, and i want to change and display the image in popup/dialog/confirmation box. Below is the code to select image, …

Member Avatar for AleMonteiro
0
1K
Member Avatar for Lau_1

Hello, i not sure what is the problem with my code. Below is my code. <?php if(isset($_SESSION["products"]) && count($_SESSION["products"])>0){ $total = 0; foreach($_SESSION["products"] as $product){ $product_name = $product["name"]; $product_price = $product["price"]; $product_code = $product["product_code"]; $product_qty = $product["product_qty"]; $currency = "RM "; $img = mysqli_query($link, "SELECT img FROM internet_shop where id=$product_code"); …

0
223
Member Avatar for Lau_1

Hello, i want to know, is there any way to force user can only select the address provided in dropdown list? Currently everything working well, but user can proceed without select the address from the dropdown list, can anyone help? Thanks in advance <input type="text" class="form-control" id="address" name="address" required> <script> …

Member Avatar for AleMonteiro
0
1K
Member Avatar for Lau_1

Hello, my bootstrap right panel cannot switching well. when i click #food link, it show the item, and when i click #drink link, it still ok to show the item, but, when i want to click #food link again, it doesnt work. Can anyone help me? <div class="panel-body"> <ul class="nav …

Member Avatar for Lau_1
0
234
Member Avatar for Lau_1

Hello, i faced some problem in building the android calculator. The problems like this: 1) If i click 2 + 3, it worked well, and screen will show the 5.** BUT! **when i clicked + and + and + and +...... it will continuosly add the answer. How can i …

Member Avatar for BenWard
0
415
Member Avatar for Lau_1

Hello, i had some problem with the below code. How to change the 'Click to Read More' and 'Click to Hide' function by just click 'Step' to show and hide? page.php <blockquote class="bigtext"> <p class="title"><b>Step 1</b><hr class="style1"></p> <p></p> <p></p> </blockquote> javascript <script> $(function(){ var animspeed = 950; // animation speed …

Member Avatar for diafol
0
349
Member Avatar for AntonyRayan

Hi, Good morning. In a table I show a list of names using while loop from 'name' table and textbox for each student to enter the marks. I showed two students , so two textbox fields will be displayed, and after entering marks in two textboxes, I wrote normal insert …

Member Avatar for Lau_1
0
91
Member Avatar for Lau_1

I have no idea how to open extra chat box if room_id record more than 1 <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Admin</title> <script type="text/javascript" src="js/jquery-1.9.0.min.js"></script> <script type="text/javascript"> $(document).ready(function() { // load messages every 1000 milliseconds from server. (1 second = 1000milliseconds) var roomID = $('#room_id').val(); load_data …

0
102
Member Avatar for Lau_1

Sorry, may i know what is the problem? load_data = {'fetch':1}; window.setInterval(function(){ $.post('shout.php', load_data, function(data) { $('.message_box').html(data); var scrolltoh = $('.message_box')[0].scrollHeight; $('.message_box').scrollTop(scrolltoh); }); }, 1000); $("#shout_message").keypress(function(evt) { if(evt.which == 13) { var iusername = $('#shout_username').val(); var imessage = $('#shout_message').val(); var roomID = $('#room_id').val(); post_data = {'username':iusername, 'message':imessage, 'roomID':roomID}; //send data …

Member Avatar for Lau_1
0
372
Member Avatar for Ventech_IT

Hi for some reason i keep getting a parse error when i try to load my view could someone tell me why it says unexpected end to file on line 20 <section id="login-landing" class="block block-gray"> <div class="container"> <div class="card card-container wow zoomInUp animated"> <a href="<?php echo base_url()?>"> <img id="profile-img" class="profile-img-card" …

Member Avatar for lps
0
281
Member Avatar for Harsh_5

Hi All, I am trying to capture the MAC Address of Client PC but unable to get. Give me any solution for this.

Member Avatar for Harsh_5
0
101
Member Avatar for UK-1991

Hello the valuies are not echoing when I am out side the loop <?php if(isset($_GET["catid"])) { $catid = $_GET["catid"]; $query_cat = mysqli_query($connection, "SELECT * FROM category WHERE cat_name='$catid'"); while($row = mysqli_fetch_assoc($query_cat)) { $h1 = $row["h1"]; $h2 = $row["h2"]; $span = $row["span"]; $catslide = $row["cat_slider"]; $ct_name = $row["cat_name"]; } ?> <div …

Member Avatar for diafol
0
149
Member Avatar for AntonyRayan
Member Avatar for AntonyRayan
Member Avatar for Lau_1

Hello, I want to ask, what going on for this. I try to implement form, user key in the username, it will trigger the function to check the username is existing or not. I tried to figure out the problem, but dont know what's going on... My Js file, jQuery(document).ready(function() …

Member Avatar for diafol
0
247
Member Avatar for pctechconcierge

Hello i'm not recieving any emails on my website. Can someone help me? Thank you. <div class="col-sm-6 col-md-8"> <form action="#" method="post" role="form"> <div class="col-md-6"> <input type="text" class="form-control" placeholder="Name"> </div> <div class="col-md-6"> <input type="email" class="form-control" placeholder="Email"> </div> <div class="col-md-12"> <input type="text" class="form-control" placeholder="Subject"> </div> <div class="col-md-12"> <textarea class="form-control" rows="6" placeholder="Message"></textarea> </div> …

Member Avatar for Lau_1
0
191
Member Avatar for Ian_7

My goal is to populate my HTML table with SQL results that I pull from the below PHP code that I have written. Keep in mind that in reality my hostname, username and password variables do have string data in them. The first block is my PHP where I am …

Member Avatar for diafol
0
2K
Member Avatar for UK-1991

Hello, I tried to verify if users or record already exist in the database so to do that I used a concept of in array fucntion but this was not successfull here is my code function adduser($connect) { $uname = $_POST['uname']; $pass = $_POST['pass']; $email = $_POST['email']; $query_get = mysqli_query($connect, …

Member Avatar for UK-1991
0
382
Member Avatar for SimonIoa

Hello i have created something in CSS but the position changes according to the resolution of the screen. Here is the code? I want them to remain in one place regardless the resolution here is the code #poster { width:25%; height:25%; position:absolute; z-index:0; } #poster img { -moz-border-radius: 50%; -webkit-border-radius: …

Member Avatar for SimonIoa
0
180
Member Avatar for Lau_1

Hello, anyone know how to display discount code at the paypal order summary? ![paypal.PNG](/attachments/small/4/8abddac7b536dd761ea964f20f7213ce.PNG "align-left")

Member Avatar for Lau_1
0
310
Member Avatar for vivekH

I have a arraylist which i want to store in database.I am using preparedStatement so how can i pass my arraylist as parameter to store it in database. my code is: public void insertEnquiryRecord(StudentEnquiryEntity enquiryEntity) { // TODO Auto-generated method stub System.out.println(" hi from vivek.."); ConnectionFactory connectionFactory = null; connection=connectionFactory.getConnection(); …

Member Avatar for jwenting
0
225
Member Avatar for Elvi

Hello! How to open a link in another page created? for example. <a href="" ><img src=""></a> <----- this image, to open in this -----> page. (this page have other design) Thanks in advance!

Member Avatar for cereal
0
164
Member Avatar for isaac.iji.5

hi i used multer to create an upload script now i would like to display the photos uploaded by eacch user on diff pages with diff adrees i.e exprome.come/photos/234 and also every photo would have its comment. any ideas? i think every comment should be saved with the photo id …

Member Avatar for isaac.iji.5
0
206
Member Avatar for <M/>

I am working on adding security onto my contact form and I can't seem to find the reason as to why I get errors. Currently, when I test the php form, I get this error: Parse error: syntax error, unexpected T_IF in /home/content/86/5284386/html/websitenamewashere/contact.php on line 16 Here is my php: …

Member Avatar for <M/>
0
488
Member Avatar for Stefce

Hello everyone i started learning bootstrap for a while and i want to make close button for div boxes i have this code but the X button doesn't work: <div class="panel panel-default"> <table class="table table-hover"> <thead> <tr style="background-color: lavender;"> <th><button type="button" class="btn btn-primary btn-xs">Share</button></th> <th><a href="#" class="close" data-dismiss="panel" aria-label="close" id="hide">&times;</a></th> …

Member Avatar for Lau_1
0
921
Member Avatar for Ritesh_4

Hello Is it possible to use SQL queries in a JS file? Example I have the following code, and would like for each input[type='text'] encountered, to save its value to a sql table in a column: jQuery("input[type='text']").blur(function(){ var id = jQuery(this).attr('id'); var inputVal = jQuery(this).val(); });

Member Avatar for Lau_1
0
264
Member Avatar for cagrifromearth

hello guys, i am creating a web site with webform. First i created a login page when i click button i go homepage.And i added logout button in homepage, when i click going login page but if i click internet back button(arrow <-) i go homepage again. I didnt solve …

Member Avatar for Lau_1
0
117
Member Avatar for janicemurby

Hi im attempting to copy a php code and get it to work with a script im trying to create and i have come across the error below can anyone tell me whats going off any help would be much appreicated x You have an error in your SQL syntax; …

Member Avatar for diafol
0
285