39,316 Topics

Member Avatar for
Member Avatar for nadnakinam

how to retain the values of radio buttons back from databese? for example, if user provided with 3 options (red, blue & green) if a user selected green(the value is stored in database) then next time he/she returning to the same page, previously selected option green radio button need to …

Member Avatar for nadnakinam
0
165
Member Avatar for tarunkhatri

I want to insert multiple rows in a database table, from an submit form. But not able to trouble shoot the problem in my code. Following is the code which is not inserting any row in the database. [CODE]<form action=test_insert.php method="post"> <table> <?php for($i=0; $i<10; $i++) { ?> <tr> <td><input …

Member Avatar for tarunkhatri
0
97
Member Avatar for rajeesh_rsn

Hai, I had developed a web site. In that website I need to add a facility to check for the domain name availability. I am a PHP programmer. I need to check for .com, .net, .info, .co.in only. Please help me how to do this. Thanks Rajeesh

Member Avatar for rajeesh_rsn
0
325
Member Avatar for mrcniceguy

I have worked in PHP for 1year and a half,Now i want to develop website using the CMS,and some people suggested it would be better to start with Joomla...i have installed it in my comp,but i reall dont know how to get started. So if there is anyone who knows …

Member Avatar for guru12
0
79
Member Avatar for ayesha789

Please explain me and when we [ICODE]echo $form;[/ICODE] then it shows. please explain this. [CODE]$form=<<<POST <form method="post" action=""> </form> POST;[/CODE] Thanks in Advance...

Member Avatar for ayesha789
0
105
Member Avatar for dourvas

i have tree select boxes. i fill those with data coming from a database (mysql) i want to change the data of the last two selects regarding the selection of the first. here is my code. it doesnt work (i used a little bit of javascript) in head [code=JavaScript]<SCRIPT language=JavaScript> …

Member Avatar for CFROG
0
190
Member Avatar for cwarn23

I have written a dehasher and the first 446000 rows in the mysql database have turned out ok but now my script isn't placing the entries into the database in order and is taking like a minute per entry to do it. Does anybody know what is wrong with the …

Member Avatar for digital-ether
0
373
Member Avatar for elamigosam
Member Avatar for mundetas

I have a form with check boxes, but if some of the check boxes I are not checked I get undefined index is there a why around this please help. I am using $_POST. :-/

Member Avatar for mundetas
0
162
Member Avatar for crohole

Hello master... I want to build a web crawler that can detect all files which extension is : .pdf .ppt .xls .doc First, insert the domain of a website to search files, than the result will be like this : domain : [url]www.examle.com[/url] Files : 1. xxx.doc 2. xxx2.doc 3. …

Member Avatar for cwarn23
0
154
Member Avatar for AliHurworth

Hi all, I have a two-part form intended to replicate the output from a toolbar, with the aim of sending data to a database. So the data is generated by the following code (sim1.php): [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> …

Member Avatar for cwarn23
0
142
Member Avatar for CFROG

I've been working with a script that allows users to look up other users in their area based on their zip code. I attempted the script myself but the whole lat/long thing was a bit much for me to understand, so I settled for one that I found on the …

Member Avatar for diafol
0
404
Member Avatar for Stefano Mtangoo

Hi All, I have been learning making CMS and you guys have been helpful. I can now post, and view the posts. I need to edit/delete articles. I have read somewhere that you can make a link that appends an id of the article and you can retrieve it via …

Member Avatar for Stefano Mtangoo
0
106
Member Avatar for normmy

Hi all I would apreciate some generic help with the following problem as it's probably far too complex to document and solve on a forum but I need some more ideas on how to diagnose this problem. situation: PHP running on a Hiawatha server using an mssql 2000 database. all …

Member Avatar for codejoust
0
109
Member Avatar for davidlgj

Hi all, I'm using the PHP code below to get results to return to an autosuggest / autocomplete. The problem is that if an earlier SQL query takes longer to return from the database than the most recent SQL query then the results of the older query will be displayed …

Member Avatar for codejoust
0
144
Member Avatar for MikeGore

Hi, I am trying to add a small date-time box to my website. In visual C# this was so easy as you can just drag and drop the gui. In dreamweaver I have not been able to find any like. I would like to be able to pick a date-time …

Member Avatar for Tekkno
0
145
Member Avatar for uktena

I'm writing a utility for work using forms, then submitting the supplied information into a database with php. The work this intended for is to be performed every thirty days. I need to find a way to automatically check the database and be sure each table in this database has …

Member Avatar for uktena
0
116
Member Avatar for rajeesh_rsn

Hai, I had a php based website and my home page is index.php. In that index.php page I called an another page (inner.php) using iframe. And works fine. Now I had heared that goolge calculate iframe objects as the virus or something like that blacklist our website. Is there is …

Member Avatar for rajeesh_rsn
0
93
Member Avatar for rajeesh_rsn

Hai friends, I had a main web site and a number of 15 ( also increasing ) child websites. I had a master database in my main website. Now I need to connect main database from the child websites. I had a code to connect the database from main website …

Member Avatar for rajeesh_rsn
0
160
Member Avatar for armyguydave69

Okay, I just change hosting providers and I was using my old account with the previous hosting company as a testing server. Anyway, I set up the new account today and ready to make my account live.... but of course it couldn't be that simple. I have code for a …

Member Avatar for armyguydave69
0
82
Member Avatar for chris_j_haines

I am looking for ideas of projects I can do to further develop my PHP and MySQL skills. I did Business IT university and have a good knowledge of PHP and MySQL as I did my dissertation in it. I would like to develop these skills further but I have …

Member Avatar for Stefano Mtangoo
-1
89
Member Avatar for MikeGore

Hi, I am trying to design a website, where we have a table containing the days of the week and hours. The idea is to populate this table by its connection to the database. So two pages: Make appointment: 1. I insert into the database via php website selecting time …

Member Avatar for CFROG
0
87
Member Avatar for Stefano Mtangoo

Hi All, I have register/ Authentication form codes given away by Keith29 (If not mistaken your good name). So what I need here ia the whole Idea of secure register/Authentication so that I will be able to make mine. I would like also to integrate my login system with that …

0
79
Member Avatar for haggis-man

I wish to pass an array of arbitrary content via a hidden field in a form which uses the POST method [CODE]$targets = any old array; ... build form to include ... <input type=hidden id=targets title=targets name=_targets value=\"".htmlspecialchars( serialize( $targets ))."\">[/CODE] Clearly this requires some use of the htmlspecialchars() or …

Member Avatar for haggis-man
0
106
Member Avatar for aditi_19

I want to create reports in php for which i need php_pdf.dll.I am using php5 which doesnot have this extension. I tried downloading php_pdf.dll from some sites and php.ini accordingly but it still gives me an error : Fatal error: Call to undefined function pdf_new() in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\reports.php …

Member Avatar for chrishea
0
81
Member Avatar for alex0514

im doing a project, but before that, i have to do some literature review. i need to do an application review or a system review which the system is more or less the same as my system. is there any related or recomended system that i can use as my …

Member Avatar for CFROG
0
62
Member Avatar for Zack_G

Hi, This has been puzzling me and i hope someone can help. I have a MySQL database field that contains a members password "password" and i need a login script that asks for the customers username and 4 random digit's of there password, for example: Username: [ ] Password: Digit …

Member Avatar for almostbob
0
141
Member Avatar for syahrizal

I want to know what is the difference between joomla based website and php... I noticed joomla sometimes used .html at its url for seo. I have made this joomla website [URL="http://linuxrise.com"]http://linuxrise.com[/URL] and want to know your opinion about this... thank you...

Member Avatar for diafol
0
135
Member Avatar for samarudge

Hi, I am having a problem with my PHP mail function. I am trying to send an email from [email]user@site.com[/email]. This code is fine: [code=php] mail($to, $subject, $body, "From: user@site.com\n" . "MIME-Version: 1.0\n" . "Content-Type: multipart/alternative;\n" . " boundary=" . $mime_boundary_header) or die('Mail Error'); [/code] however this does not [code=php] …

Member Avatar for crazyb0y
0
192
Member Avatar for armyguydave69

Okay, this is probably a lame question. I have a search page which which needs to be sorted by distance when the results come back from mysql. What's the easiest way to do this since mysql orders the results? heres the code i wanna try to use: [code] function CalculateDistance($lat1, …

Member Avatar for edwinhermann
0
117

The End.