39,320 Topics

Member Avatar for
Member Avatar for MattD00

I have set up a cookie in JavaScript to store the change to the stylesheet. The cookie is loaded using <body onload="set_style_from_cookie()"> This cookie was working fine until I set a session cookie in PHP to verity if a user was logged in session_start(); if(isset($_SESSION['username'])) { $user = $_SESSION['username']; } …

Member Avatar for riahc3
0
342
Member Avatar for Casperjames

Hello all, This is my first site project using codeigniter. The frontend is all html and I am using codeigniter for the backend. Everything was working fine until I added the frontend files and modified my htaccess file to not redirect to index.php but instead to index.html. htaccess looks like …

Member Avatar for cereal
0
411
Member Avatar for fheppell

I have a snippet of mysql which is filled in with two variables: SELECT `download` FROM `images` WHERE `owner_un`='$owner' AND `url`='$url' The `$url` variable comes directly from a URL variable. This input should only ever contain alphanumeric characters, if this helps. Thanks for any help

Member Avatar for fheppell
0
211
Member Avatar for fheppell

I've got a mysql query that should return a single cell SELECT `download` FROM `images` WHERE `owner_un`='$owner' AND `url`='$url' How would I echo the result of this? Thanks for any help

Member Avatar for minitauros
0
235
Member Avatar for Albert Pinto

Hi people, Need some help in keeping query string values intact while moving across pages via pagination. Thing is that I'm fetching records from mysql table and displaying it in tabular format. Its like... I have a page "records.php" In phpmyadmin there is "userdetails" table with columns as...... first_name, last_name, …

Member Avatar for diafol
0
1K
Member Avatar for davy_yg

Hello all, this might not be related to php (I don't know which forum I should post this topic) so I thought may be someone could help me out. How to edit pdf file ? Is there any specific software to edit adobe pdf file ? I have tried adobe …

Member Avatar for Webville312
0
73
Member Avatar for Harmeets

Hi everyone i am installing opencart on my local server but it's showing error **Warning: CURL extension needs to be loaded for OpenCart to work!** i have already strated from php extention Php_Curl can any one help to me in this..

Member Avatar for pritaeas
0
94
Member Avatar for mallows.yum

hi all! i have here a code. <?php /** * Main.php */ include("include/session.php"); ?> <html> <head> <title>Export to Excel</title> </head> <body> <form action="saverec.php" method="post"> <?php define ('DB_NAME', 'vincegac_vince'); define ('DB_USER', 'root'); define ('DB_PASSWORD', ''); define ('DB_HOST', 'localhost'); $link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD); if (!$link) { die('Could not connect: ' . …

Member Avatar for arunmagar
0
360
Member Avatar for divyakrishnan

Hi.. Any PHP code to display the IPaddress of all systems which are connected in a LAN ? Thanks in advance

Member Avatar for |-|x
-1
3K
Member Avatar for klemme

Hi all, I have a very simple question, for many of you.. I need to write out a select list like this : From table pages, I need id and link to fill up the options in my select list. But I need to tjeck in another table, if there …

Member Avatar for klemme
0
169
Member Avatar for jcomputing

I have a contact form in a popup div. I want the contact form to redirect to the popup div with an error or a successful message when form is completed obviously depending if message was sent NOT A PAGE. Please can someone help me. <?php //set variable error var …

Member Avatar for Squidge
0
342
Member Avatar for hachemal

I am looking for input form that you can enter the data to submiyt into Mysql database. the form should have these conditions: Invoice: auto generate Date: date pickerfrom pop up calendar choose client from drop down list then option to add/remove rows rows would have: Auantity, Product(drop down), category(drop …

Member Avatar for hachemal
0
287
Member Avatar for shilu2

I have tried following code index.php <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>JQuery Popup Demo</title> <link rel="stylesheet" type="text/css" href="css/style.css" /> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript"> function openOffersDialog(x) { $('#overlay').fadeIn('fast', function() { $(boxpopup).css('display','block'); $(boxpopup).animate({'left':'30%'},500); $('#content').html(x); }); } function closeOffersDialog(prospectElementID) { $(function($) { $(document).ready(function() { $('#' + prospectElementID).css('position','absolute'); $('#' + prospectElementID).animate({'left':'-100%'}, 500, function() …

Member Avatar for mrvijayakumar
0
335
Member Avatar for sriharig

i am working on a mobile verification code wher user can enter his email and his mobile number.then code has to be send to his mobile number,by that code user can login to site. how to achive this target.

Member Avatar for mmyyy
0
509
Member Avatar for mdemetri2

Hi I have some script that I have used for sometime so understand it is out of date code, but it works. I want to amend it so that it also checks a field user_type and on successful login directs each to a differnt page. The code at the moment …

Member Avatar for Webville312
0
2K
Member Avatar for ngonix

Hello. I am facing a challenge in passing a dynamic php variable to an SQL statement i wrote in Jaspersoft iReport. I downloaded the PHP-Jasperserver-integration library and i am managing to open a jrxml file i created in Jaspersoft and then using the libraries to open it in PDF format, …

Member Avatar for ngonix
0
2K
Member Avatar for arunpawar

Here, I have created a php mysql login page. I am a newbie so please also comment on my code too. I have this login page where after entering the correct data i am getting welcome "id" instead of "username". I want to know what i am doing wrong here. …

Member Avatar for arunpawar
0
177
Member Avatar for dina85

i need to update ADMIN COLUMN with $_SESSION variable. however, it does not seem to be working correctly. why? help me plz... require("conn.php"); $sql = "select * from pemohon where id='$_GET[id]';"; $result = mysql_query($sql); while($row = mysql_fetch_array($result)) { $sn = $_SESSION['SESS_NAME']; $sql = "update pemohon set admin='$sn',status_key='2' where id='$_GET[id]';"; $result …

Member Avatar for iamthwee
0
180
Member Avatar for McLaren

Hey, I just finished reading book "PHP Team Development" http://www.amazon.com/PHP-Team-Development-Samisa-Abeysinghe/dp/1847195067 and I can say its interesting read, especially should be interesting for project managers. It might look that there are not many technical things and its waste of time on one hand, but its easy read when you are not …

Member Avatar for McLaren
0
249
Member Avatar for Webville312

Hi, I am working on a code that dispatches airtime depending on a schedule that is specified. Now all works just fine. The only problem is that the code executes only once. To throw more light, here is how it is meant to work; 1. An administrator creates a schedule, …

Member Avatar for Webville312
0
141
Member Avatar for amkaos

this is link to code http://jsbin.com/ixupuk/4/edit when my form is loaded into browser OR refreshed, all fields are auto-submitted to mysql database.. i included at the bottom, an if(isset) statement that i couldnt get to work. thanx

Member Avatar for amkaos
0
284
Member Avatar for eburlea

Hi! I have a Zend project and I would like to implement a login form in the header of the site in such a way, that if a user is not logged in, he can use the site, but the form is always there, no matter what pages he access. …

Member Avatar for eburlea
0
667
Member Avatar for kakalahori

i have stored some value into DB table and want to get them displayed on my form with a restriction that the column title in DB and the Value of the previous feild are same and only the cloumn rows are shown inthe following feild in the form....!!!! Cant Figure …

Member Avatar for diafol
0
141
Member Avatar for hades.edy

SO friends... i had a fight with this code.. please help :( <? ob_start(); ?> <?php // Make sure an ID was passed if(isset($_GET['id'])) { // Get the ID $id = intval($_GET['id']); // Make sure the ID is in fact a valid ID if($id <= 0) { die('The ID is …

Member Avatar for hades.edy
0
146
Member Avatar for Maideen

Hi I have two button in my page One is 'search' and another is 'print' But i could not re direct and passing date to another page. code is working fine for search. But print I am blur of this. Pls help me how i can redirect the page by …

Member Avatar for urtrivedi
0
165
Member Avatar for Maideen

hi I tried to generate ageing reports in php. But I could not get result and even error. it is my code. Pls help me connection.inc.php try { $hostname = "server"; //host $dbname = "database"; //db name $username = "user"; // username like 'sa' $pw = "password"; // password for …

Member Avatar for Maideen
0
550
Member Avatar for hades.edy

I accesed php info from cPanel .. php.ini said to be /etc/php5/php.ini but in the "etc" folder is nothing :( help... :(

Member Avatar for hades.edy
0
90
Member Avatar for kakalahori

hi can any one share some possible way to print an invoice when some thing is registered in a form using PHP and redirects it to html page for printing my form is ok and stores data.... redirects to the disered page as well now i have html lay out …

Member Avatar for diafol
0
1K
Member Avatar for hallianonline

Hi every one i am getting this error Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING on this statement i tried so many time but no help is there anyone who can fix it $sql="INSERT INTO donors(donor_id, name, gender, dob, weight, height, conid, statid, cityid, bloodid, …

Member Avatar for diafol
0
126
Member Avatar for dhani09

I have an array that looks like this: `Array ( [0] => Array ( [id] => 2 [name] => test product1 [description] => test [quantity] => 1 [price] => 188 [status] => Brand New [category] => Computer Software [subcategory] => Music Software [postdate] => 2013-05-19 [prodimage] => [user] => admin …

Member Avatar for dhani09
0
106

The End.