Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~23.4K People Reached
Favorite Tags
Member Avatar for programmer12
Member Avatar for programmer12

HI , I am creating a social media site, but getting stumped on updating the status comment boxes. Currently, when a user post a comment to a status it updates in REAL-TIME (ajax) on their page, however, it does not on the clients side. How can I build a comment …

Member Avatar for ryantroop
0
164
Member Avatar for programmer12

Hi, I am trying to create a jquery slider with navigation button and arrows, but my slider is not stopping at the last image nor stopping at the first image. See my fiddle for an example: [http://jsfiddle.net/c2mKp/](http://jsfiddle.net/c2mKp/) Any help is welcomed. HTML: <!-- Jquery Slider --> <div class="jquery-slider"> <div class="wrap"> …

Member Avatar for iamthwee
0
349
Member Avatar for programmer12

Hi, I am confused on why my function is not being executed. I have setup the AJAX to insert data into the database and on success to grab information from the database and print it out on the site, but I also added a function to be called or executed …

Member Avatar for programmer12
0
16K
Member Avatar for programmer12

**Problem:** I am currently using Jquery Autocomplete UI and it works perfectly but I would like to add more to the codes, but I have no clue where to place the codes. **What I would like to add:** I would like to add the Keyword Hightlights, HREF LINK (window.location.href), and …

Member Avatar for LastMitch
0
212
Member Avatar for programmer12

Hi, I am trying to create a way where Javascript can do a loop between two Unix Timestamps to print out the dates and some html. I have created a way for this method to work in PHP. However, I need this same method to work in Javascript. Working PHP: …

Member Avatar for programmer12
0
610
Member Avatar for programmer12

Problem: Ajax Return false is not returning false, the codes values are being put witin the address bar, and the page is being refreshed. Question: Did I put the return false in the wrong area? How can I fix this problem? AJAX $(".status_reply").click(function() { var status_id = $("input[name=status_id]").val(); var user_id …

Member Avatar for programmer12
0
230
Member Avatar for programmer12

I have a question about the AJAX Get Function: How do we use the AJAX get function to call a php script every ten seconds and place the information on the website and it can still be copied and paste without refreshing. I created a script that calls the php …

Member Avatar for programmer12
0
102
Member Avatar for HunainHafeez

i want to put likes button in my website, yet its running on LOCALHOST (IIS). e.g FACEBOOK like button in showing likes , google+ button etc. how ?

Member Avatar for HunainHafeez
0
102
Member Avatar for programmer12

Hi, I am trying to create a jquery fadeIn from an external file. I am using AJAX and PHP (see below) 1st snippet is the notify.php file. 2nd snippet is the external file called random.php My question is: Where and How should I add in the Jquery to perform this …

0
66
Member Avatar for programmer12

I am trying to build a script (PHP email attachment) that works for all mailing Systems (Gmail, Yahoo, Outlook etc) The codes below work perfectly for Hotmail, but Gmail and others dont come through. What should i do to the codes below to fix this issue. Thanks!

Member Avatar for programmer12
0
304
Member Avatar for programmer12

Hi, The code below is a Jquery News Ticker. It works but recently the codes broke. The codes are pulling data from the database. Some of the titles and descriptions have ' or "" in them. Would that stop the codes from working? If so, if you dont mind, Please …

Member Avatar for programmer12
0
282
Member Avatar for programmer12

Hi, I am trying to setup a cron job on my web hosting server. I want the php file to run every 15mins. Can some one tell me if I set it up right or not? Also, since there time is 3 hours behind me I want to use my …

Member Avatar for programmer12
0
371
Member Avatar for programmer12

Hi, I am trying to write a code in php where I retrieve the DateTime from the database and find what time is it 15 minutes before the DateTime. Such as //Receiving the Start Time from the database. $time1 = "2012-03-17 15:00:00"; //Reformating time to get the date 1hr or …

Member Avatar for programmer12
0
166
Member Avatar for programmer12

Hi I created some codes to upload my videos on the website, but for some reason it stopped working. Can Someone please help me debug the issues thanks! [CODE]<?php $username = "root"; $password = ""; $hostname = "localhost"; $database = "name_of_database"; $db = mysql_connect($hostname, $username, $password); mysql_select_db($database, $db); $path = …

Member Avatar for veedeoo
0
162
Member Avatar for programmer12

Hi, I am designing a E-commerce site. I have designed a way for the customers to view their previous orders, but for some reason there is a problem. The codes that you see below work but the while loop keeps stopping at 2 items when there should be more. Can …

Member Avatar for programmer12
0
190
Member Avatar for programmer12

Hi, I am trying to modify these codes to where I can use my PHP /MySql Database. I have an event section in the database that list the month year and day of the event as well as the title of event and description. As of now I have all …

Member Avatar for mrtreb20
0
161
Member Avatar for programmer12

Hi, I am trying to let my users upload videos on my website by using a Form, but when I try to upload a video it times out. How can I write a php script to make this work? -OR- Do I need to change the PHP.ini file to make …

Member Avatar for programmer12
0
87
Member Avatar for programmer12

When is it the best time to close a database connect? Is it good to close it on every scripting page i do that uses it?

Member Avatar for programmer12
0
115
Member Avatar for programmer12

Hi i just created a website for my church and the IE 9 is displaying it wrong.. Can some1 plz take a look at it and get back with me on why its doing that? [URL="http://www.lgm70.org"]www.lgm70.org[/URL] When i looked at it in IE 8 it shows everything that I created …

Member Avatar for programmer12
0
120
Member Avatar for programmer12

Hi, I am having some trouble with my login PHP script. My Code is below ( Please let me know if you see any errors with it ) Thanks! [CODE] <?php session_start(); require("db.php"); if(isset($_SESSION['SESS_LOGGEDIN']) == TRUE) { header("Location: " . $config_basedir); } if(isset($_POST['submit'])) { //Check to see if they are …

Member Avatar for diafol
0
170
Member Avatar for programmer12

Hi all, I have just created a social site and i was wondering if there is a way to make notification pop up on the side of screen and fade just like facebook? but in php? Please add links to other website to help me get on the right path. …

Member Avatar for diafol
0
536
Member Avatar for programmer12

Hi, My codes at the moment are [CODE]mysql_query("SELECT * FROM table WHERE date = CURDATE()");[/CODE] It outputs the correct stuff that i want to show that has been uploaded that day (newest) but I want it to show it for 3 days or maybe even a week... Is there a …

Member Avatar for Stefano Mtangoo
0
104
Member Avatar for programmer12

Hi, I am trying to organize the way my episode titles output. At the moment it prints like this. (I want to be able to upload the newest episodes and also go back and upload the older shows but i want the newer shows to stay at the bottom in …

Member Avatar for technical_amit
0
128
Member Avatar for programmer12

Hi, Can someone help me with writing the script to be able to pull the information from the database without refreshing everytime something new has been added? My codes at the moment read: [CODE]$recentupdates = mysql_query("SELECT * FROM status NATURAL JOIN users WHERE user_id = users.id ORDER BY status_id DESC …

Member Avatar for programmer12
0
124
Member Avatar for programmer12

My Alter Table Editor Window Not Coming Up in Mysql Workbench? PLEASE CAN SUM1 HELP ME! ^_^ My Alter Table Editor Window will Not open up.. Is there a way to make it open???? Im using Mysql Workbench Thanks!

Member Avatar for programmer12
0
112
Member Avatar for programmer12

I'm having some problems on gettin the Login page to redirect the users back to the login page with error message if they input the incorrect login details... But instead of the redirect i receive an blank white screen (Nothing in View Source and Nothing on page).. How do i …

Member Avatar for karthik_ppts
0
166
Member Avatar for programmer12

Hi, I'm not quite sure which Forum I should be writing about ActionScript in but can someone help me with this: I have a client that created a banner for our company and the ActionScript always receives a error message once live on the web... The Error code was Error#1009 …

Member Avatar for adarsha_saraff
0
56
Member Avatar for programmer12

The Javascript that I have included in my php created site is [CODE]<script type="text/javascript"> $(window).load(function(){ setHeight(); }); if(navigator.userAgent.search(/msie/i)!= -1) { } else { window.onresize = function(){ setHeight(); } } </script>[/CODE] Would this cause my browsers (Firefox - IE - Chrome - Opera) to not work?

Member Avatar for Taywin
0
106
Member Avatar for programmer12

Hi, I keep getting this error message. Warning: Cannot modify header information - headers already sent by (output started at /home1/lgmsevze/public_html/passion4anime/test/header.php:18) in /home1/lgmsevze/public_html/passion4anime/test/login2.php on line 31 Can sumone help me or explain to me on how to fix this issue.. I will post my codes here... Header: [CODE]<?php session_start(); if(isset($_SESSION['SESS_CHANGEID']) …

Member Avatar for smantscheff
0
322