39,393 Topics

Member Avatar for
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
118
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
95
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
164
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
84
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
91
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
88
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
81
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
83
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
64
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
142
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
194
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
119
Member Avatar for Sina6002

Hi everyone, I'm pretty new here, though I've read many posts here:) I got into a question and thought someone might be able to help me with it. I need to read human language date input and extract the date from an input. Let me explain: Lets say we have …

Member Avatar for cwarn23
0
160
Member Avatar for sam023

I have seen in many applications where user is restricted to choose particular option only when user is trying to upload something..!! For example if user is uploading image..he only see 2 options JPG and GIF format in file type option of Browser Window..!! How can i do the same …

Member Avatar for edwinhermann
0
101
Member Avatar for jossylala

got a api from an sms provider that looks like this CODE [url]http://www.frihost.com/api/send_sms.php?user=xxxxpassword=xxxx&to=1234&from=xxxx&content=hello&content_type=text[/url] am writing a php file for my sms site to send message so that the output would give something like the one above. Here is a look at my code: [CODE]<?php session_start(); include($HTTP_SERVER_VARS["DOCUMENT_ROOT"] ."/includes/config.inc.php"); if(isset($_SESSION['user_id'])){ $user_id = …

Member Avatar for cwarn23
0
169
Member Avatar for armyguydave69

Hi, I'm having a slight problem on my home page. Depending on if the user is logged in or not depends on what navbar they see. However, even if the user is logged in - it will sometimes tell the user he is logged out. If you refresh the page …

Member Avatar for armyguydave69
0
184
Member Avatar for groogruxking40

Hey everyone.. I would like to be able to upload .pdfs that are 30MB 1. I am using Wordpress 8.4 2. I am using Dreamhost and cannot locate either the php.ini or .htaccess file 3. I don't have php.ini or .htaccess in my root folder via FTP 4. I e-mailed …

Member Avatar for samarudge
0
69
Member Avatar for veledrom

This is content of in.header.php [code] if(!isset($session_id) || empty($session_id)) { session_start(); $_SESSION["Inputs"]=array(); } [/code] This is index.php which also has form objects that POSTs other values to step1.php [code] require_once 'inc.header.php' $_SESSION["Inputs"]["name"]="MyName"; $_SESSION["Inputs"]["surname"]="MySurname"; [/code] This is step1.php [code] require_once 'inc.header.php' $_SESSION["Inputs"]["age"]=$_POST["textboxAge"]; print_r($_SESSION["Inputs"]); [/code] Problem is print_r prints only [inlinecode]Array ()[/inlinecode]. …

Member Avatar for veledrom
0
176
Member Avatar for saibhanu

Hi, Anyone tried to open crystal report file from PHP?. If so pls explain or send me sample code. Thanks, Bhanu

Member Avatar for totskie
0
83
Member Avatar for sarithak

Hi frnds... I am struggling from last 10 days..Here i am sending mail with an attachment...I got the attachment ..but, the attachment file data is fully corrupted..this is my code..please solve this one...also here my hosting server doesnt set the SMTP SERVER settings...so, do it plz...... [CODE] $fileatt = "upload/"; …

0
58
Member Avatar for Aamit

Hi,This is my php file. I want to [COLOR="Red"]replace [/COLOR] [COLOR="Green"]$$FullName$$ with Jon Rama And $$FirstName$$ with Jon and $$Gender$$ with Male[/COLOR] And [COLOR="Red"]create to new file Jon_Rama.php[/COLOR] [code] <table width="100%"> <tr> <td align="center"> <b> <h1 class="title_list">$$FullName$$</h1> </b> <br><br> </td> </tr> <tr> <td>$$FirstName$$ is a $$Gender$$.</td> </tr> </table> [/code] How …

Member Avatar for almostbob
0
269
Member Avatar for punithapary

Hi, I my code i am using open tag like this [COLOR="Red"]<?PHP [/COLOR]its working fine but if i use [COLOR="red"]<?[/COLOR] that time its showing entire code its not showing html pages Please can anyone tell me how to fix this problem Regards Punitha pary

Member Avatar for cwarn23
0
113
Member Avatar for armyguydave69

Hi, I've been looking around for a hosting company and haven't been able to decide on one. I was basically wanting to see what some people would recommend. My requirements: 1.Windows based 2.PHP & ASP.NET 3.Unlimitied disk space 4.Unlimited bandwidth 5.Allow to host unlimited domains under one account 6. The …

Member Avatar for diafol
0
127
Member Avatar for dougbarrett

Hello everyone! I searched the site already to see if this question has been addressed already and found no results, but if it has then I appologize and if you can link me to that thread I'll refer to that to solve my problem. I am trying to save a …

Member Avatar for dougbarrett
0
727
Member Avatar for Kadjii

Hello, I'm having a strange problem. I'm trying to make a link to a page called stats.php for a series of first names that I have stored in a database. However, when I use the code below the hyperlink ends up being a link to the current page I'm on …

Member Avatar for Kadjii
0
219
Member Avatar for dwdata

I have an upload page which allows a user to SELECT a file from their hard drive, then UPLOAD it to ftp folder, and then store the path of the image to mySQL db. It functions just fine except BUT we want to guard against large file being saved. If …

0
59
Member Avatar for Aamit

Hi,This is my php file. I want to [COLOR="Red"]replace [/COLOR] [COLOR="Green"]$$FullName$$ with Jon Rama And $$FirstName$$ with Jon and $$Gender$$ with Male[/COLOR] And [COLOR="Red"]save or create to new file Jon_Rama.php[/COLOR] [code] <table width="100%"> <tr> <td align="center"> <b> <h1 class="title_list">$$FullName$$</h1> </b> <br><br> </td> </tr> <tr> <td>$$FirstName$$ is a $$Gender$$.</td> </tr> </table> …

Member Avatar for cwarn23
0
112
Member Avatar for studioceasar

Hi All, Can one of the gurus out there help me to convert a row variable to a link that will download an MP3 file? Using the code below: my $row['link'] displays the url in plain text. I would like to create a button to initiate an automatic download command …

Member Avatar for studioceasar
0
84

The End.