Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #1K
~9K People Reached
About Me

Technical Support / Web development

Favorite Forums
Favorite Tags
Member Avatar for Barefootsanders

Hi all. I'm attempting to output all of the possible combination from "a" to "zzzz" and I'm wondering if theres an easy way of doing that. As an example output would be ... a b c .... z aa ab ac .... az ba bb ... and so on.. Is …

Member Avatar for Barefootsanders
0
223
Member Avatar for rashid47010

BELOW IS PHP CODE GETTING PARSE ERROR AT LINE #16 [CODE=PHP] <html> <head> <title>table php file</title> <?php $times=2; if(isset($_POST["submit1"])) { $start=$_POST["txtStart"]; $end=$_POST["txtEnd"]; $times=$_POST["txtTimes"]; for($start;$start<=$end;$start++) { $answer= $start * $times; print($start. "multiplied by" .$times. "=" .$answer.) ; } } ?> </head> <body> <form name="form1" method="post" action="table.php" size=15> Start-Number:<input type="text" name="txtStart" value="1" …

Member Avatar for ShawnCplus
0
94
Member Avatar for YoungSkali

Adding The Sig [IMG]http://i179.photobucket.com/albums/w300/scalia24/sigforum1.jpg[/IMG] Always attach Sig Option [IMG]http://i179.photobucket.com/albums/w300/scalia24/forumsig2.jpg[/IMG] NO SIG!!!! [IMG]http://i179.photobucket.com/albums/w300/scalia24/nosig.jpg[/IMG] please tell me what i need to do i use [url]www.forummotion.com[/url]

Member Avatar for SimonMayer
0
60
Member Avatar for Vai

How do I make the timestamp string be displayed as something that is actually readable / understandable? Yes, I have looked on google, here and a couple other places, but I am not seeing anything too specific or I am just not understand. Thank you for your understanding, helping me …

Member Avatar for Rkeast
0
149
Member Avatar for Jeyush

Hi mate, I use regex for my validation but @ this time I get confuse, how to use white space in it. I want user to enter a city name, some city name contains white space like Los Angeles, New York, I have regex which is not allowing user to …

Member Avatar for digital-ether
0
155
Member Avatar for niranjan087

I am working with a php file(WAD Assignment.php) now. If a condition is satisfied, it displays a JRadiobutton option. I want the value of that JRadioButton in my php file. But the value is not coming out. How can I do it? Code is below. <code=php> if($row["membership_category"]=="Student member"){ ?> <html> …

Member Avatar for SimonMayer
0
118
Member Avatar for empoor

Hey. I've got this code, [CODE] // query article $query1 = "SELECT * FROM (articles LEFT JOIN authorisation ON articles.page_id = authorisation.page_id LEFT JOIN authors ON articles.author_id = authors.author_id) WHERE articles.page_id NOT IN (authorisation.page_id) ORDER BY issue ASC"; $mysql_result1 = mysql_query ($query1) or die ("Query '$query1' failed with error message: …

Member Avatar for empoor
0
143
Member Avatar for valonesal

I have pages written in html that use javascript and css, what I would like to do is use php to change how the url comes out. So I would like the url to look like mywebsite.com/index.php?xx1122 or something like that without disclosing the location of the html files or …

Member Avatar for EvolutionFallen
0
144
Member Avatar for empoor

I'll start by publishing my code: [CODE]// query article $query1 = "SELECT page_title,author_id FROM articles WHERE category = 'fiction'"; $mysql_result1 = mysql_query ($query1) or die ("Query '$query1' failed with error message: \"" . mysql_error () . '"'); $fiction_articles = mysql_fetch_assoc($mysql_result1); // query author $auth_result = &$fiction_articles['author_id']; $query2 = "SELECT author …

Member Avatar for empoor
0
149
Member Avatar for thegreatdanton

Hi, i'm just looking for some advice in relation to retrieving data from a MySQL database and displaying in nice looking rows. Basically, what i want to do is call the data into separate rows similar to what is on [URL="http://www.rent.ie/houses-to-let/renting_dublin/dublin-city-centre/"]here[/URL]. I'm not sure if these are separate divs or …

Member Avatar for diafol
0
109
Member Avatar for vairvixen

I have a sendmail.php script which evaluates whether or not certain pieces of information are available and/or are within the correct parameters. Within this code I have defined two variables : [code] $maxsamples = 3; $minsamples = 1; [/code] I also have another variable which is a summation of several …

Member Avatar for darkagn
0
110
Member Avatar for mrcniceguy

i want to know,how is it possible to check automatic all the checkboxes generated in php while page loading. i mean if the are for example 20records then all to be checked.

Member Avatar for mrcniceguy
0
90
Member Avatar for david777

hey how do i start learning PHP??? RESOURCES DONT KNO plz comment thankss

Member Avatar for jay_412
0
82
Member Avatar for Hugo Brand

Hi I've been doing a study of some PHP code developed by another author in 2002. The article could be found at: [url]http://www.devshed.com/c/a/PHP/Building-A-PHPBased-Mail-Client-part-2/3/[/url] The functions I need help with in understanding are: function parse($structure) //custom function developed by author function get_attachments($arr) //custom function developed by author The following line gave …

Member Avatar for Hugo Brand
0
136
Member Avatar for DealthRune

I am making 2 cookies, but when they are set, it shows me this error "Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\forum\index.php:4) in C:\xampp\htdocs\forum\index.php on line 81" But I dont have any headers?? Here is the code [CODE]$expire=time()+60*60*24*30; setcookie('username',$u,$expire); setcookie('password',$p,$expire);[/CODE] I made a …

Member Avatar for Josh Connerty
0
327
Member Avatar for shadwickman

Hello, I'm using easyPHP to locally test some scripts I'm building, but I came across a problem that I can't seem to resolve. Within one of my PHP scripts, there's a segment where I end the PHP ([icode]?>[/icode]) and output a form in HTML, then resume the PHP section ([icode]<?php[/icode]). …

Member Avatar for phpbeginners
0
462
Member Avatar for seangdy

I write code as below: [code]<html> <title>Hanuman Database</title> <link href="../style.css" rel="stylesheet" type="text/css" /> <div align="center"> <body> <?php session_start(); $dbhost='localhost'; $dbuser='hanum3_hanumandb'; $dbpass='hanuman2009'; $conn=mysql_connect ($dbhost, $dbuser,$dbpass) or die('Cannot connect to the database because: ' . mysql_error()); $dbname='hanum3_HanumanDB'; mysql_select_db($dbname,$conn) or die('Error, cannot connect to database'); ?> <form id="form1" name="form1" method="post" action="create_user.html"> <div align="center"> …

Member Avatar for seangdy
0
313
Member Avatar for gcombe

ok.. I know how to loop through an array and get the rows to build a table across the page.... that is pretty simple... but I need help creating a table on the fly that lets me pull the values and go verticle by game.. meaing the out put would …

Member Avatar for SimonMayer
0
102
Member Avatar for innocent.boys

[B]I was wondering by using which technique i can fetch data from database more fast...!! . . i have 500 records and i have to do pagination also on it..!! how can i do it more faster...? . . i just want to know what professionals do to make there …

Member Avatar for innocent.boys
0
2K
Member Avatar for rbartlett

I've recently developed a site using Joomla (PHP). The problem occurs when an IE6 user clicks on a link to a component item within the site. An error message is displayed saying IE can not display the page. All other links work in IE6, it's only when the link is …

Member Avatar for SimonMayer
0
101
Member Avatar for khr2003

Hi Basically when I try to insert the work links into an a mysql database through a php script the word changes to 'li<x>nks'. Does anyone know why? I tried to make the insert on a single page (so other functions or scripts would not affect it) but with same …

Member Avatar for BzzBee
0
90
Member Avatar for Newbi

Hi i have this login script which works. it will work for passwords that i have directly entered into the database through phpmyadmin but wont login for the passwords that i have entered through the registeration script for which i have used md5. Understandable ! But as soon as i …

Member Avatar for tiger86
1
145
Member Avatar for Tivoilos

[code=php]<?php require_once("Actions/config.php"); if(isset($_POST['email_address']) && $_POST['password']){ $sql = "SELECT * FROM $tbl_name WHERE email_address ='$email_address' and password ='$password'"; $result = @mysql_query($sql); // Mysql_num_row is counting table row $count = @mysql_num_rows($result); // If result matched $myusername and $mypassword, table row must be 1 row if($count==1){ // Register $myusername, $mypassword and redirect to …

Member Avatar for FlashCreations
0
129
Member Avatar for stuckinmud

hellllloooo again does anyone know how i can tweak my files so that when someone has completed an email form, it stays on the same page and says Thank you - your message has been received etc? at the moment i have my form in my contact us html file, …

Member Avatar for stuckinmud
0
2K
Member Avatar for itsrahulk

Hi Folks !! i have a string like this. [ICODE]"../images/gallery/New-Goa-Park-in/86ffbca77051448489aec640d288153a.jpg"[/ICODE] from this path i want only [ICODE]../images/gallery/New-Goa-Park-in/[/ICODE] how can i do it? Please help Thanks.

Member Avatar for somedude3488
0
104
Member Avatar for egturnkey

Hello Dear Friends, Consider we have an php file called index.php how can i add a code to (index.php) so that when it excute (run) on any website for example (anysite.com) it call an text file (license.txt) which is on my server and also in same time it record the …

Member Avatar for somedude3488
0
129
Member Avatar for giddyupgirl

Hi there I am currently completing a uni assignment using php and I thought it was finished until the lecturer dropped a bombshell and added another requirement. I have a contact us page which was basically just a shell (dead) page, he nows tell us that we have to do …

Member Avatar for giddyupgirl
0
166
Member Avatar for Tekkno

I have a form that gives the user an option to upload a file. The field is optional, but if they do not upload a file I would like to insert a default image into the database. At one point it was working but I can't seem to figure out …

Member Avatar for Tekkno
0
96
Member Avatar for gilbertsavier

Hello, Going to try to explain this as best I can. I have a bunch of stuff in a database and I need to display this info within a table. This isn't a problem at all but, I need it to only display 3 td tags per line and then …

Member Avatar for SimonMayer
0
78
Member Avatar for Thiassi

Hi there, I'm currently trying to write a function that works on a 24 hour (obviously) day but it must run 4x the normal speed. So as an example, hour: 22 will pass 4 times every day. It doesn't need to work on a AM/PM basis but only hour 1-24. …

Member Avatar for SimonMayer
0
99