39,393 Topics

Member Avatar for
Member Avatar for lilokster

I just wrote my first mail script in php. It is working well, but I cannot control the senders email address or name. I would like to at least choose senders name. Here is the code I am using [code] <?php $email=$_POST['email']; $subject = "New Mailing List Signup"; $body = …

Member Avatar for lilokster
0
72
Member Avatar for EnderX

I have a php report page I'm working on that's giving me some problems. It's designed to be used on multiple systems; as far as I know, all of these systems are identical. On the system I did development on, the page displays information as needed. On the others, I …

Member Avatar for EnderX
0
118
Member Avatar for Eko

How can I have a post quick reply textarea , just like the one on daniweb , in a phpbb 2.0 ? Do you know/have a mod that does that ?

Member Avatar for Eko
0
73
Member Avatar for eflat

We've got a dev linux box here running an older version of apache and php4. Can I upgrade just php5 without changing apache. Seems the guides I've seen assume you are installing both.

0
46
Member Avatar for fatihpiristine

[code] <?php $smtp_server = "mail.webhostasp.com"; $port = 25; $mydomain = "domain.com"; $username = "info@domain.com"; $password = "password"; $sender = "info@domain.com"; $recipient = "no-one@domain.com"; $subject = "Test"; $content = "Bla bla bla"; // SMTP connection $handle = fsockopen($smtp_server, $port); fputs($handle, "EHLO " . $mydomain . "\r\n"); // SMTP authorization fputs($handle, "AUTH …

Member Avatar for fatihpiristine
0
104
Member Avatar for agrothe

Hey, I've taken over a php based website from another developer (ugh!)... The website uses two include files to display ads down both sides of the page. Now the client wants these ads to display in Random positions.... So, Its easy enough to take the ad text and place it …

Member Avatar for johny_d
1
125
Member Avatar for Tony Barber

I want to construct a web page with language flags. The user clicks his flag and the web page is then displayed in his language. In VB6 I would achieve this with a resource file. Does HTML, PHP or CSS have something like that or must I create a web …

Member Avatar for fatihpiristine
0
151
Member Avatar for sharad23nov

Hello , I want to develop a RFID Middleware (RFID READER and TAG).Is it quite feasible to develop the RFID Middleware application on php.I have enough worked on php web based application.But I did not do wotk on specific application like RFID Middleware development.So I need your suggestion that is …

0
54
Member Avatar for tanha

hi, I have two php file: 1. list.php 2. delete.php On the list.php, there is a link word delete which refer to the delete.php and also send the id of the current record to the delete.php. On the delete.php I have the following code: [CODE] <body> <?php //must ask for …

Member Avatar for tanha
0
288
Member Avatar for becraig

I have an issue I want to have a php file set on my server that appends to a csv file and also reads and queries that csv file for a column. eg: I want a csv file with the following columns Email, First, name I want the php to …

Member Avatar for somedude3488
0
110
Member Avatar for trs21219

i have my url structure rewrite from index.php?act=games&task=play to mysite.com/games/play.php but when i try to add a $_GET value to the end of the url it doesnt work. i want when a user clicks a game for it to be like mysite.com/games/play.php?game=534. but when i call the $_GET['game'] it does …

Member Avatar for johny_d
0
164
Member Avatar for binoj_daniel

Hi Experts, I want to know what is the best screen resolution for a website. My website is a technical resource portal. Based on the best pratices please suggest what to follow. Is 1024 x 768 a standard now? Right i have a free flow CSS but it is not …

Member Avatar for johny_d
0
89
Member Avatar for ryan_vietnow

Hello guys,does anyone here know how to make tabs with php?Could you please post some tutorials or links for this? Thanks..

Member Avatar for ryan_vietnow
0
111
Member Avatar for Lucrezia

Hello all! I am using some javascript code to change some classes of an external stylesheet on the fly. Is there any way (a variable perhaps?) to access the changed stylesheet so that I store it afterwards with php, or should I rebuild it again (according to the options of …

Member Avatar for MidiMagic
0
139
Member Avatar for Inny

Need help to set up a few files. I want to use a php script to detect server status, and javascript to automatically redirect to a server status page [on another server obviously] (only if the server is down) immediately rather than get a 404 error. I have a php …

Member Avatar for somedude3488
0
352
Member Avatar for Mosqwik

Hi, Something that would be really useful for a new project im working on would be to have automated browser titles using some php code in the <title> tags. The only way I can think of doing this is by having the php code read the url im using for …

Member Avatar for johny_d
0
69
Member Avatar for mag00

Fairly new to this, and looked around on the net and didn't readily find my answers. I am setting up picture pages, thousands, and want to be able to change header or footer information down the road as the site expands. I am on godaddy non windows hosting. I need …

Member Avatar for mag00
0
163
Member Avatar for Pro2000

Peace, I wrote a PHP File Contains a login form, If the user logs in a field will be inserted into the MySQL DataBase, So I want to make an automatic logout after 20 minutes idle. I wrote: [CODE] <?php session_start(); require("Connecting_Config.php"); $unm=$_SESSION['user_name']; $current_date=date("i"); //Only Minutes $gt_lastactivity="select * from logs …

Member Avatar for fatihpiristine
0
181
Member Avatar for ronghel

uhmm i need ths for my project huhu... its like thisi made a login script and work so fine.. i put the account details in the database... and now i want to do is whenever i login all the information about the one who login will be display in the …

Member Avatar for stymiee
0
75
Member Avatar for jinju

I want to create an application which passes a text message to a server trough an ssl port I couldn't use curl and I need to encrypt using public key. I expect anybody to help me. Thanking You

Member Avatar for jinju
0
76
Member Avatar for pbpyrojust

I am using <?php include ('/php/header.php'); ?> in my php index file. Everything shows up in Dreamweaver, but as soon as it hits the web server and I go to access it absolutely nothing shows up. All I get is a blank page with no source code. HELP!

Member Avatar for johny_d
0
165
Member Avatar for kye

I am having a debate with my network admin as we get ready to bring MS SQL Server 2005 online on our Windows 2000 network. I have been working on webpage scripts in PHP (which I am fairly familiar with) on a web host using MySQL to prepare. Now the …

Member Avatar for ryan_vietnow
0
119
Member Avatar for magikman

Hello, I am trying to create a small php script that will display all but a few directories on my server as links. I have created the following code. I had it working when trying to ignore one directory, but now i would like to place the ignored directories within …

Member Avatar for magikman
0
76
Member Avatar for vallurirajesh

This has been a long time dream of mine.I read a lot of books, sometimes really old and out-of-mainstream books. I want to build a forum where likeminded people would propose book ideas, review them etc and others can talk about that book. I also wanted to expand this to …

Member Avatar for vallurirajesh
0
94
Member Avatar for macsuibhne

I'm creating a car dealership website and I want to display a banner on each result page, but the banner should relate to the search the user made. If the user searches for an Audi A4 the url is: [url]http://......../searchlisting.php?search=1&[/url][B]makems=38&models=25[/B]&price=-1&seller=&year=&x=35&y=8 If the user searches for an Audi A6 the url …

Member Avatar for HazardTW
0
95
Member Avatar for ritgrad83

I was able to install Apache2, PHP5 and MySQL5 on my MacBook running Tiger and using root to start the Apache server manually. However - I am not able to get it to start automatically on reboot. I even added a line in etc/hostconfig: APACHE2=-YES- Having done the above - …

Member Avatar for ritgrad83
0
186
Member Avatar for jonathan.jbkt

I have a site that I host for a client that is having problems with the apostrophes in the text it draws from the database. Here is a [URL="http://askpriscilla.com/pages/ask_news.php"]link[/URL] to the live site that is having the issue. I think it has to do with the addslashes php function but …

Member Avatar for somedude3488
0
253
Member Avatar for mairaj

which php local server is good ,how to download free php local server plz suggest me link so that i m use it locally in my system ,

Member Avatar for ryan_vietnow
0
352
Member Avatar for lasherz2

Hi,anyone know the login and authentication code usin php and mysql?I got a site that should have an administrator to administer the users and the overall site.Anyone know how to do it?

Member Avatar for stymiee
0
65
Member Avatar for smartness

Somebody help me plz... each time i make a reply on a topic, there are 2 same posts.... does anybody how to fix that? I am using vbulletin 3.6.8.

Member Avatar for Ezzaral
0
36

The End.