39,326 Topics

Member Avatar for
Member Avatar for nelliott10

I am a bit of a newbie to PHP and have produced a dynamic form for a uni project, however, I am unsure how to code the PHP script which will insert the data inputted through the form into a SQL database. The code for the form can be seen …

Member Avatar for diafol
0
138
Member Avatar for lordtrini

I am trying to display the results of a query in the form of a table. this it the PHP that i am using below. The problem is that the headings of the table repeats. I really don't want that... I am also trying to get a border around the …

Member Avatar for lordtrini
0
332
Member Avatar for Designer_101

Hey Im having a bit of trouble due to creating a media player playlist and using xml to input the directory variables to flash. I haven't really used xml much apart from that. Anyway... I need the variables from my XML file in a variable ready to print in php …

Member Avatar for whiteyoh
0
114
Member Avatar for BHance

Hello All, I have 2 data sources. Data source A needs information to be updated on a regular basis. It receives it's updated information from data source B. There are many thousands of records involved here so I am trying to limit the amount of MySql queries as much as …

Member Avatar for wcgoran
0
5K
Member Avatar for Arsench

Hello world, I’m trying something very simple but can’t get the result. I have table from I’m selecting a value which exist, then I want to display the value on the other page, but can’t get the result. Here is the code. The first page is active.php where goes the …

Member Avatar for Arsench
0
113
Member Avatar for star_lavender

How to use while loop to loop a set of radio button groups? I have several questions that retrieve from database and each question has five different ratings named 1, 2, 3, 4 and 5. I create radio button group for the rating and using while to loop them. I …

Member Avatar for star_lavender
0
3K
Member Avatar for Encrypted

Anyone know what I'm doing wrong here? I'm trying to get this code to work so that if a directory exists.. the mkdir() function is bypassed (so i dont get an error) but it seems that no matter what I throw in my is_dir() function it always hops down to …

Member Avatar for Encrypted
0
127
Member Avatar for haboota

Hi - I am playing around with a php image gallery and Im stuck trying to add lightbox to it. The script automatically builds the gallery, and all anchors to the full size picture are generated. How can I add the rel="lightbox" tag? [CODE] echo "<center><a href=\"$PHP_SELF?path=$aPath&page=$aThisPage&img=$aFn&idx=$aIdx\"><img border=\"4\" width=\"$twidth\" height=\"$theight\" …

Member Avatar for haboota
0
121
Member Avatar for Juls

Hi, I have a text data type field in MySQL table that I need to read out to a page. When the value is entered into this text field the value will have returns as follows: ------------------ TEST TEST aaaaaaaa asdasdasdfas 3rd lineasadas ---------------- When I read this value out …

Member Avatar for Mckcvision
0
295
Member Avatar for jrw89

I have the following code:[CODE=php]<?php $implementation = new DOMImplementation(); $document = $implementation->createDocument('http://www.w3.org/1999/xhtml', 'html', $implementation->createDocumentType('html')); echo $document->saveHTML(); ?>[/CODE]which returns:[CODE=html]<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"></html> [/CODE]...exactly as I wanted it to. However, when I run the following: [CODE=php]<?php $implementation = new DOMImplementation(); $document = $implementation->createDocument('http://www.w3.org/1999/xhtml', 'html', $implementation->createDocumentType('html')); $head = $document->createElement('head'); $document->appendChild($head); echo $document->saveHTML(); ?>[/CODE]I …

Member Avatar for jrw89
0
104
Member Avatar for jeeter19

I have 2 variables that should be global within its own file. I am attempting to access their set information from a function within that file but I receive nothing but an error. When I hardcode in the information into the function instead of retrieving from the variables, it works …

Member Avatar for diafol
0
102
Member Avatar for sainiweb

<?php session_start(); /*if (!isset($_SESSION['user'])) { header("Location: index.php"); }*/ include ("include/header.php"); include ("include/dbc.php"); //require_once "Spreadsheet/Excel/Writer.php"; //define('FPDF_FONTPATH','./fpdf/font/'); //require('./fpdf/fpdf.php'); //require ('pdf.php'); $rowsPerPage = 10; $pageNum = 1; if(isset($_GET['page'])) { $pageNum = $_GET['page']; } $offset = ($pageNum - 1) * $rowsPerPage; $_SESSION['From']=$_REQUEST['From']; $_SESSION['To']=$_REQUEST['To']; $sql = "SELECT * FROM daily_material_record LIMIT $offset,$rowsPerPage"; $result = mysql_query($sql); …

0
55
Member Avatar for leeZA1

I have a problem, if someone can help great!! Every time the form is submitted to delete the stabletitle it says successful even when the title entered is not in the database, if its not in the database it should say unsucessful, can someone see what is wrong with my …

Member Avatar for diafol
0
86
Member Avatar for Linlin

Hello! I have more or less zero knowledge about coding in PHP. The most I've done is includes, to help me maintaining my sites more efficiently. I hope I will not offend anyone with this question. Anyhow, towards my issue. I have one table containing several fields, with information such …

Member Avatar for almostbob
0
228
Member Avatar for wahdude316

If I'm not posting this right please excuse me I'm new to this board. I'm trying to edit my htaccess file, so that I can hide my affiliate links. I copied the code from an internet marketing forum. <ifmodule mod_rewrite.c> RewriteEngine On RewriteRule greensmoke.html [url]http://www.greensmoke.com/13745.html[/url] [R=301,L] </ifmodule> <ifmodule mod_rewrite.c> RewriteEngine …

0
65
Member Avatar for agiletechnosys

Agile Technosys provide Web Development service for prospective client, to help them to reach their customer with the help of internet. Website helps us to serve our desired client base in a targeted manner. Web Design and Web Development become the integral part of our marketing and advertisement phase. While …

-2
59
Member Avatar for niths

i am not getting the value in $sql2. so can anyone please.... thank u [CODE]$sql2="select allocatedmemory from projects where projectname='$projectassign'"; mysql_error(); $data1=mysql_query($sql2); echo '$data1';[/CODE]

Member Avatar for cwarn23
0
91
Member Avatar for througheye

Hello, I want to make my php based script's url search engin friendly,as i know nothing about .htaccess, can anyone one hints me about the code in the .htaccess file. [url]http://127.0.0.1/one/index?base=one&script=comment[/url] ignore 127.0.0.1/one/ the actual url is index?default&base=one&script=comment where "one" is the folder name and comment is the script on …

Member Avatar for cwarn23
0
155
Member Avatar for whitestream6

This is my XML code: [CODE]<?xml version="1.0" encoding="ISO-8859-1"?> <library> <episodes> <episode> <eptitle>Police Stop!</eptitle> <epno></epno> <desc>Dangerous driving caught on camera.</desc> </episode> <episode> <eptitle>Police Stop! 2</eptitle> <epno></epno> <desc>Dangerous driving caught on camera. Including a pursuit through the Midlands.</desc> </episode> <episode> <eptitle>Police Stop! 3</eptitle> <epno></epno> <desc>Featuring footage of dangerous driving on our roads, …

Member Avatar for phpuser
0
95
Member Avatar for jasper77

Hello! I am missing something... I am using phpmailer-fe to collect the information from a form and send it to me in an e-mail. This is the first time I'm using the phpmailer scripts and they seem straightforward. The form seems to process and sends the viewer to a success …

0
44
Member Avatar for arraystechnosys

Arrays Technosys is training institute in pune which provides technical courses related to computer and IT training.Arrays also providing live projects and performs placement activities which gives 100% job garuntee. The various courses offered at Arrays Technosys have been formulated by highly experienced professionals in the niche domains. The course …

Member Avatar for arraystechnosys
-2
173
Member Avatar for keval_hack

Alright, I do little experience with programming with HTML/PHP The thing I need is an script that will log the visiting persons IP address AND his country of origin in any way; so the admin (me) can see it and confirm he/she has done whatever I want him to do. …

Member Avatar for keval_hack
0
150
Member Avatar for frugalfreeloade

Hi, I've been searching for hours for an answer to this. I have a coupon saving website and I'm trying to allow people to print off a shopping list by checking checkboxes that once submitted will send you to a basic white page with just those item selected displayed so …

Member Avatar for metalix
0
213
Member Avatar for Syakoban

Hi, I'm trying to get an "app" created to run a com port on my local machine to control some electromechanical equipment. The issue is connecting to the local machine from a phone or laptop using WiFi and pulling up a "web page" (in PHP???) that can then communicate to …

Member Avatar for metalix
0
135
Member Avatar for kayblack

Hi guys, I'm trying to create a php script that'll send information gathered from a form and send it as an html email with the info arranged in tables. Can't seem to get it to work. Here's the message part of the script (containing the table): [CODE]$to="o.oloyede@feeslimited.net"; $message=" <table width="500" …

Member Avatar for cjohnweb
0
6K
Member Avatar for sallecpt

Hey guys. First of all, its been 2 days, and already 2:30am in the morning. I've eaten a steel fork, jumped over the moon, broke an arm, and cant get it to work. Will somebody please assist me in this; The end result sound simple, and maybe it is, but …

Member Avatar for sallecpt
0
152
Member Avatar for TrinitySamuels

Hello! Well, for those experts there, how do you guys master PHP Programming Language? I can't seem to find any good courses in colleges / uni that offers a subject on "PHP Language" ... So, how do you guys managed to learn it? Via books and e-books?.

Member Avatar for colweb
0
82
Member Avatar for michael_r

hi every one this is my first post in any forum i have got an error while inserting a row to mysql this is my code: $query = "INSERT INTO flight(date,from,to,depart_time_hr,depart_time_min,arr_time_hr,arr_time_min) VALUES('$_POST[date]','$_POST[from2]','$_POST[to2]','$_POST[hours1]','$_POST[minutes1]','$_POST[hours2]','$_POST[minutes2]')"; the error shown is: 1064 You have an error in your SQL syntax; check the manual that corresponds …

Member Avatar for michael_r
0
153
Member Avatar for mrcniceguy

i`m having this problem after whenever include or require is Used. help please i dont know how to solve this. Fatal error: Cannot redeclare validateemail() (previously declared in C:\wamp\www\kislat\functions\functions.php:3) in C:\wamp\www\kislat\functions\functions.php on line 26 [code=php] <?php session_start(); require "config.php"; $user=$_SESSION['user']; $id=$_SESSION['id']; if(!session_is_registered('user')){ header("Location: checklogin.php"); exit; } define('INCLUDE_CHECK',1); require"functions/functions.php"; require"includes/functions.php"; //$user=$_POST['user']; …

Member Avatar for mrcniceguy
0
820
Member Avatar for dan_ord

Hi everyone, having a real headache over arrays at the moment. Had a search through the forums but can't find what im after so i'll begin here. I'm in the process of setting up a shopping cart. I'm pretty much there with it all, however there is one thing which …

Member Avatar for NettSite
0
71

The End.