39,316 Topics

Member Avatar for
Member Avatar for leprakhauns

Anyway I can turn off the 500 error? I have a recursive function that is being set to be called a few hundred times if possible, but before that can happen and proceed with the rest of the code it calls a 500 error. (For those interested its a dynamic …

Member Avatar for rajarajan2017
0
94
Member Avatar for trilithon

Please help? I am getting the following error when executing a mass mailing script that contains HTML as the mail content: [B]Parse error: syntax error, unexpected '>' in ... on line 14[/B] If I remove lines 14 to 27 (from <style> to </style>) I get the following error: [B]Parse error: …

Member Avatar for vaultdweller123
0
104
Member Avatar for chaitanya15385
Member Avatar for jhudson0219

I just downloaded PHP, but I am having trouble finding where to write my code. I found a website said to use php-cgi.exe. Is this right, because I can't figure out how to save nor display the code and output.

Member Avatar for rajarajan2017
0
151
Member Avatar for dan_t

Hello everyone, I'm having a little trouble here. I'm trying to use a session created from log in(the user id) and take that user id and pull out information from the data base. An example would be: (this is not the actual code, but I will wrap it anyway) [CODE] …

Member Avatar for rajarajan2017
0
110
Member Avatar for mrcniceguy

I need to display part of text from mysql: for exapmle i`m having 50characters and then i just want to display just part of it like 20characters in the first page and the remain including the first as a link to another page. That when someone clicks the link the …

Member Avatar for Martin1077
0
608
Member Avatar for chaitanya15385

[CODE]if($role=='ADMIN' && $role!='USER' && $role!='REVIEWER' && $role!='SUPERUSER') { //If match is found, log-in user and set cookies if ($num==1) { $user_id = mysql_result($result,0,"user_id"); $role = mysql_result($result,0,"role"); $user_type = mysql_result($result,0,"user_type"); $name = 'Administrator'; setcookie("user", "$email", time()+7200); setcookie("user_id", "$user_id", time()+7200); setcookie("name", "$name", time()+7200); setcookie("role", "$role", time()+7200); header( 'Location: list.php' ); } else …

Member Avatar for vaultdweller123
0
87
Member Avatar for fouzia Qayyum
Member Avatar for vaultdweller123
-3
105
Member Avatar for jtaylor-bye

Hello all. I have made a basic page in html with a table in it. The top row in the table displays a picture. When I designed and viewed it in html format the table started at the top of the page. I set the rest of the layout up …

Member Avatar for vaultdweller123
0
87
Member Avatar for aynamohol

Hi Advanced Devs, I am very new to php. This is my learning moment. So, Help me. I have added a zip folder with my files. I also have expoted my database as zipped folder. Please help me with this topics. Please. Samrat

Member Avatar for aynamohol
0
113
Member Avatar for andydeans

hi, i have a database that i have done for a client, which has about 5 CREATE VIEWS in the mysql database, i need to backup the database and then import it into a new database for another client who wants the same thing. problem i have is i can …

Member Avatar for andydeans
0
108
Member Avatar for Manny7

Hey there, i'm beginner programmer in PHP and try on my web add cool url. I've this simple rewrite rule that make from url [B]page.com/index.php?id=about[/B] this url [B]page.com/about[/B] [code] RewriteEngine on RewriteRule ^(adm|img|content)/(.*)$ $1/$2 [L] RewriteRule ^(.*)$ index.php?id=$1 [L,QSA] [/code] But now i wanna to try some harder, e.g. i've …

Member Avatar for storm123
0
103
Member Avatar for julzk

Hi all, I have a query that outputs 4 fields from a DB. Each row contains data like so: [code] $id = 1; $name = John; $items = 2; $price = 4.2; $saleprice = 2.0; $id = 2; $name = James; $items = 1; $price = 1.01; $saleprice = 1.0; …

Member Avatar for chrishea
0
182
Member Avatar for danielagaba

hi i'm trying to retrieve content from a .csv file and load it into a mysql database. i already created a corresponding table in my database with matching table names but when i try to use the following code, only one row is filled and with 0's. [CODE] <?php $connection …

Member Avatar for Manuz
0
100
Member Avatar for temkit

Hi, i find some scripts to unpack tar.gz file on ftp server by not work. How to unpack tar.gz using php some example?

Member Avatar for rajarajan2017
0
74
Member Avatar for sumit3gupta

hi , freinds ... i am stuck up with same problem new to web development and want to integrate tinymce in it ......but dont knw exactly how to do it can any1 of you can guide me to it. starting installing i didnt get 1 thing how to install gzip …

Member Avatar for pritaeas
0
137
Member Avatar for benqus

Hello! =) I have a big problem here, with PHP charset stuff. My mysql is utf8_hungarian_ci , but the php shows me only '?' and ?inDiamond signs. I guess the PHP's working incorrectly, because my MySQL returns my records just fine. Any solutions? =) Thank you!

Member Avatar for benqus
0
203
Member Avatar for masterjiraya

I registered some data in my registration.html it seems to work properly but when I clicked submit button to start an action of summarizing the registration.html to be showed up in my registration_summary.php, all it shows is just a blank white page. Why??? this the code. I write the code …

Member Avatar for rajarajan2017
0
246
Member Avatar for azegurb

Hi all, I have a problem with string comparisions for ex; this fucntion [CODE]$id=$_GET['id']; if(isset($id) && $id=benelli){ echo "benelli text"; } if(isset($id) && $id=bettinsoli){ echo "bettinsoli text"; }[/CODE] i do like above but when i got id via URL to go benelli text it writes both benelli text and bettinsoli …

Member Avatar for azegurb
0
83
Member Avatar for TLCJohn

Hi all, Sorry about this but, I need some help ASAP. I have been working on a form all day, which I built in dreamweaver CS4. Here is where I need help, on the form have a list of options in the form of checkboxes Buttons BUT when the form …

Member Avatar for rajarajan2017
0
119
Member Avatar for isacthiyagaraj

iam new to php. i want to send a test mail to my gmail account from my application. i tried many code but i cant get the mail. so plz help me reagrding this. i need a code to send mail to gmail account from my application

Member Avatar for rajarajan2017
0
38
Member Avatar for rahulephp

Can anyone please let me know how to seperate Model Numbers from a string ForEx Titles: 1) Sony DCSW380B 14MP Camera 2) Casio 10MP Camera EX-Z3/3 3) Panasonic Lumix Camera DMC-G1 12MP Output would be: For 1) "DCSW380B 14MP" OR ""DCSW380B" For 2) "10MP EX-Z3/3" OR "EX-Z3/3" For 3) "DMC-G1 …

Member Avatar for rahulephp
0
94
Member Avatar for jeeter19

Hi, [B]Problem At Hand:[/B] Include my [I]config.php[/I] file which contains the string variables I want to use inside my [I]global.php[/I] file which contains a connect() method which I am trying to use. [B]What's Going Wrong:[/B] It successfully is including the [I]config.php[/I] file but it doesn't seem to have access to …

Member Avatar for rajarajan2017
0
14K
Member Avatar for waren

Hello I'm new also with the php programming language i tried to put this code. I wanted to happen is when it submit it will email to me the name of the user. <?php $alert = $user->get('username'); if (isset($_POST['continue'])){ mail("www.warviper@gmail.com","User Login",$alert); } ?> <form name="frm" action="http://google.com" method="post"> Good Day! <?php …

Member Avatar for waren
0
104
Member Avatar for bimal_nayak

Hi i want to increment the month for a maturity date calculation , how can i do that.... Please anybody help me.

Member Avatar for rajarajan2017
0
48
Member Avatar for Grantism

Hey guys I am very new to this forum. I have quite a bit of experience with html, css and php. I was looking for a tutorial or some code examples for making a forum. I have a style I will use but I need to know the code for …

Member Avatar for mediachicken
0
165
Member Avatar for mediachicken

Hello, I've been studying PHP for a while now, and am tackling my biggest project so far. I need to parse python code (which I'm already doing) and color code it. I need to get a word RIGHT before the ( symbol. I've tried just about everything, and can't get …

Member Avatar for vaultdweller123
0
144
Member Avatar for Kadafiz

Hi.. im PHP user.. i want to get a text box value to the Php variable by clicking hyperlink and i want to send that value to database using mysql query. i want to know that is how can i get text box value to the PHP variable clicking by …

Member Avatar for Kadafiz
0
6K
Member Avatar for niche1

I can get this to work: $counter = 2; $src = ",'new[item" . $counter . "]'"; echo $src; But, not this: $counter = 2; $src = ",'$new[item" . $counter . "]'"; echo $src; Where $new has already been defined as an array. What do you think is the problem?

Member Avatar for niche1
0
238
Member Avatar for feodal

Hi guys, So I have a little project that I need to get done which I honestly don't exactly know how to approach. The task is. There is a website, cars.com and there you can enter in search field of used cars the zip code that you need for all …

Member Avatar for pritaeas
0
91

The End.