39,326 Topics

Member Avatar for
Member Avatar for tanha

I had installed php 5... and then I installed the IIS on windows XP and it works well with ASP, BUT not for PHP, see BELOW: Now when I drop a php file in C:\Inetpub\wwwroot and open in browser nothing happens just a blank page, it seems the php is …

0
52
Member Avatar for subratcall

Hi, I am a new bee in PHP , I have a asignment to write a online polling script. Can u please help me get the script to refer and write a fresh code as per my requirement

Member Avatar for subratcall
0
62
Member Avatar for ike185

Me and my team are using yellow duck framework to build a dynamic site with a backend database. Does anyone know of any tool to help speed up the process of validating the html page that the php spits out? Locating these errors is time consuming and we have been …

0
93
Member Avatar for Jean Gwyneth

Hi! Im creating a search engine for products. it can search by category, model_no and so on.. when i searched for multimedia, it would return lists of products under multimedia. every result should be clickable and would display info for each product. problem is, how can i pass the value …

Member Avatar for Jean Gwyneth
0
127
Member Avatar for ishlux

Hi, here is the code for page navigation, its working fine but , if there are 4 pages , each page is displaying 3 records per page, if we go to 3rd page, and click on the subject it will display the contents but it will automatically come to the …

Member Avatar for vicky_rawat
0
124
Member Avatar for MDGM

Hi all, I have a registration form on my website which once filled in, it sends an email to the user with a link to "verify their email address". This link holds all of the information entered by the user in the form and looks something like this: [url]http://www.example.com/confirm.php?firstname=john&lastname=smith[/url] When …

Member Avatar for MDGM
0
166
Member Avatar for prashanth18
Member Avatar for Papa Awortwe

Hi to everyone, Please i would be grateful if you help me with this. This is a tutorial i am practising .When i create a session variable on a page , I find it difficult to show it on another page. Please check also to see whether the scripts are …

Member Avatar for Shanti C
0
90
Member Avatar for missaaliyah

Well my site is a music lyrics site, and included an option to embed youtube videos with each lyric added. It came with one lyrics, which you can see here. On the left of this page, the youtube video fits in a box. [url]http://music-and-lyrics.info/index.php?lyric_id=1[/url] Now I added a new lyric …

Member Avatar for missaaliyah
0
191
Member Avatar for grr

I want to store a function in a MySQL Database. Like this: [code=php] <?php $query = "SELECT * FROM items WHERE item_id='$_GET['item_id']'"; $item = mysql_fetch_assoc(mysql_query($query)); $action = $item['action']; $action; ?> [/code] So in the database, $item['action'] is header('Location:blah.html'); But it could be ANY function, see. I just want to know …

Member Avatar for grr
0
142
Member Avatar for DrWhoFan

I've run the install for PHP 5.2.6 and been able to have PHP pages run successfully. My research has told me that PHP no longer includes the dll needed to connect to mySQL. I've run into a couple of problems on my system. [LIST=1] [*]Using phpinfo(), I can identify the …

Member Avatar for DrWhoFan
0
128
Member Avatar for prayingmantis

I just moved hosting providers for my website and there is one page that is not working properly. The old provider had MySQL Server 5.0.51a and PHP 5 so I setup the new server with MySQL Server 5.0.51a-Community and PHP 5. After the site move, I get the following error: …

Member Avatar for lordspace
0
95
Member Avatar for missaaliyah

As far as I know, I have successfully completed all config files so the site should load, but for some reason, the site doesn't. Here is the error message I get instead. [CODE]array(3) { [0]=> array(4) { ["file"]=> string(74) "/home/imedia/public_html/music-and-lyrics.info/functions/main.function.php" ["line"]=> int(10) ["function"]=> string(10) "mysqlQuery" ["args"]=> array(1) { [0]=> &string(20) …

Member Avatar for missaaliyah
0
110
Member Avatar for nodoid

Hi, I've got a small problem here in replacing html for bb. I can go bb to html really easily (see the code below), but when I go the other way, I get the same text returned as when I put it in [code] if ($tobb == 0) { $search …

Member Avatar for lordspace
0
346
Member Avatar for methew45

hellow guys.. i have been onto one site which is embedding videos from zshare.net servers the problem with zshare embedding is that it the file path keep on changing each time you visit the link an example is Code: [url]http://www.zshare.net/video/39062271789b05[/url] this link.. when u goto this link.. and check the …

0
47
Member Avatar for mexabet

I have this script and it works fine but Google is complaining that the dynamically-generated URLs have duplicate title tags and duplicate meta descriptions- having inherited that from /cmp/index.php. A few examples of the pages are as follows: [CODE]/cmp/index.php /cmp/index.php?start_time=12.00+am&start_tz=Africa/Abidjan&end_tz=Africa/Abidjan ‎/cmp/index.php?start_time=12.00+am&start_tz=Africa/Abidjan&end_tz=Africa/Accra /cmp/index.php?start_time=12.00+am&start_tz=Africa/Abidjan&end_tz=Africa/Algiers [/CODE] The following is the section of the …

0
73
Member Avatar for r.bali

hi! i want to upload file on server using php i was doing it but i m getting index error in php code.please tell what can the reason for this error thanks in advance

0
47
Member Avatar for veledrom

Hi, I retrieve all students from database with adding submit buttons along with them. For example; when i click on 3rd student’s submit button, it gives me information of last retrieved student. How can solve this problem? Note : All action is in same page. Thanks [code] <?php while ($myArray …

Member Avatar for veledrom
0
97
Member Avatar for saikishore

Hi frnds....... This is kishore.. i need to develope Controlpanel Webhosting.... So,plz tell me... freedownload source code urls for CP WEBHOSTING... Thanking You

Member Avatar for darkmikey
0
100
Member Avatar for odysseous

The code below gives me "Warning: Wrong parameter count for mssql_bind() in" [CODE] $action="L"; $M_ExhibitionID=$_REQUEST[M_ExhibitionID]; $areaid=1; $LngCode="el"; $sproc=mssql_init( "sp_php" ); mssql_bind($sproc,"@action",$action,SQLCHAR,false,false); mssql_bind($sproc,"@M_ExhibitionID",$M_ExhibitionID,SQLINT4,false,false); mssql_bind($sproc,"@areaid",$areaid,SQLINT4,false,false); mssql_bind($sproc,"@lang",$LngCode,SQLVARCHAR,false,false); $GET_EXHIBITS=mssql_bind($sproc); [/CODE] what is my wrong?

Member Avatar for odysseous
0
92
Member Avatar for veledrom

Hi, I have textboxes and combos in a form with submit and clear button. When i submit all values in textboxes and combos remain same. How can i clear them when i click on clear button. Or reload the page? Thanks

Member Avatar for saikishore
0
124
Member Avatar for Cheecher

Alright, I am currently creating a page that allows for the user to see a basic directory of user phone numbers and gives of variables. The issue I am having is that I have a link so that if you want all the users information you can click on it …

Member Avatar for ramseswar
0
133
Member Avatar for dudegio

Hello guys! I am working with an PHP page that will generate an excel file. The flow is all transaction made should be generated in an excel file. Also if there is another transation, the new information will be appended in the same excel file. I have work on this …

Member Avatar for buddylee17
0
277
Member Avatar for ryy705

Hello, I am experimenting with sockets and pop3. I am trying to to connect to gmail with the following code. But it prints an empty string as a response. Should it not print out 200 OK? Could someone help me by pointing out what I am doing wrong. Many thanks …

Member Avatar for ryy705
0
47
Member Avatar for bdcd

Hello I'm new to PHP, here's what I'm haveing trouble with. I'm using php to display a gallery in a directory and delete the images, but I get an error when I try to use the delete button and I don't know why or how to fix it, can anyone …

Member Avatar for bdcd
0
1K
Member Avatar for jencinas69

Hello I need to get data from a database and write the db dump to a server as txt file any ideas?

Member Avatar for jencinas69
0
109
Member Avatar for e_velkova

Hi! It's really a silly question, but i've tried many ways to do it and it's still worthless.... :( I have a form: [code]<form action="jobapp.php" method="POST" name="app"> Please, enter your name: <input type="text" name="applicant" /><br /> Please, enter your telephone number: <input type="text" name="telephone" /><br /> Please, enter your e-mail …

Member Avatar for e_velkova
0
249
Member Avatar for Cobber

Hi, I have spent hundreds of hours fixing errors with my phpauction GPL V2.51 script I bought. A lot have been cosmetic but this one is causing onscreen errors and making the page extremely slow to load. To cut a long story short, if the thumbnail image a customer is …

Member Avatar for PomonaGrange
0
156
Member Avatar for ishlux

Hi all, [code=php] $selcount = "SELECT * FROM autoalto_mail as a1, autoalto_contractor_sentitems as a2 where a1.flag=a2.flag='1' " ; [/code]

Member Avatar for Shanti C
0
84
Member Avatar for ishlux

Hi all, I have created an inbox......which will show list of values...... if some new data added in inbox......it will be the last in the inbox table. i want the new entries should appear first. can u help me out...........

Member Avatar for saikishore
0
71

The End.