199 Posted Topics
Re: Hi On Time bases you can display the Show Name and Show Details | |
Re: Hi [CODE]$id= ['author']; [/CODE] replace the above code as below [CODE]$id= $row['author']; [/CODE] | |
Hi i want to generate barcode for each bill. any one can help me. barcode will be alphanumeric(dynamic). | |
Re: hi I think line no 9 $limit = 7; and also you are checking if($count < $limit) you have given the limit as 7 by default so it is not going beyond 7 so please try to change and test it | |
Re: Hi For Microsoft SQL we have to configure ODBC in apache. Please check the below URL, you may get any idea [URL="http://www.easysoft.com/developer/languages/php/apache_odbc.html"]http://www.easysoft.com/developer/languages/php/apache_odbc.html[/URL] [URL="http://ie2.php.net/function.mssql-connect"]http://ie2.php.net/function.mssql-connect[/URL] | |
Re: Hi try to update particular URL with help of their database id | |
Re: Hi Try to use array function on the check box as below [CODE]<input name="books_cart[]" id="books_cart[]" type="checkbox" value="<?php echo $m['books_id]; ?>"/>[/CODE] | |
Re: Hi In the text box you have mention [CODE]onfocus="input_focus('tag');" onblur="input_blur('tag');"[/CODE] try to remove and check | |
Re: Hi in connection replace the below thing [CODE]$con = mysql_connect("localhost","root","");[/CODE] | |
Re: Hi If you are going to use array. you cant use normal insert, Tell me you are going to use array | |
Re: Hi try the below code. it will help you to solve your issue category.php [CODE]<script type="text/javascript"> function showcategory_table(str1) { if (str1=="") { document.getElementById("txtHint1").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if … | |
Re: Hi use the below code and check for your refernce [CODE]if($_POST['submit']=='save') $query="INSERT INTO reference(fullname,fname,birth)values('".$_POST['fullname']."','".$_POST['fname']."','".$_POST['birth']."')"; mysql_db_query($database,$query); $change=mysql_insert_id();[/CODE] | |
Re: Hi Can you please check your modify_data.php file Are you getting the account_number text box value. with help of GET function you can able to display the details | |
Re: Hi please add the below line after mysql_query [CODE]$change=$_POST["reference_num"];[/CODE] Let we check | |
Re: Hi [CODE]if ($v_seriesnox=="" or $v_cityx=="") [/CODE] change the above line as below [CODE]if ($v_seriesnox=='' || $v_cityx=='') [/CODE] | |
Re: Hi I think the below link will me more helpfull for your reference [URL="http://www.plus2net.com/php_tutorial/php_rss.php"]http://www.plus2net.com/php_tutorial/php_rss.php[/URL] | |
Re: Hi [CODE]//Writes the information to the database $sql="UPDATE `employees` SET name='$name',email='$email',phone='$phone',photo='$pic' WHERE id='$id' "; $result=mysql_query($sql); [/CODE] Please try the below one [CODE]$sql="UPDATE `employees` SET name='$name',email='$email',phone='$phone',photo='$pic' WHERE id='$id' "; mysql_db_query($database,$sql); $change=$_POST["id"]; [/CODE] | |
Re: Hi Please check your line number 54 [CODE]<th><a href="view.php">view</a></th> [/CODE] Replace it as below [CODE]<th><a href="view.php?id=<?php echo $form_id;?>">view</a></th> [/CODE] | |
Hi I am trying to connect my server through PHP script as below. But i am unable to reach my server and getting error. If i connect my server through ftp software with [B]FTPES[/B] protocol my server is getting connect I am getting an Error as [B]"Warning: ftp_connect() [function.ftp-connect]: php_network_getaddresses: … | |
Hi I am trying to display the records Horizontally from my 3 different table 1. place table - n number of place 2. Item name 3. Item in different place i want to display the above report as in the attachment. please help me to resolve the issue [CODE]<table width="100%" … | |
Hi Friends i am facing problem in searching a words from database. Below is my Database details [CODE]CREATE TABLE IF NOT EXISTS `latest` ( `latest_id` int(25) NOT NULL AUTO_INCREMENT, `latest_title` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `latest_short` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `latest_image` varchar(250) NOT … | |
Hi Friends i have some problem in update my dynamic text box value for particular id alone, i want to update only the 2 column fields into my database, i have used the below code. i am not able update the fields into my DB. Please help me to solve … | |
Hi I am using latest LG Optimus 500, i want to use my mobile as WIFI Portable modem, with help of this i want to use internet connection to my Dell XPS 15 R Laptop. Pls any one give me good solutions | |
Hi Friends I am using dynamic text box, i want to calculate the amount from value of rate in the text box and qty Pls help me how to solve it... [CODE]<?php include("config.php"); ?> <script type=text/javascript> function multiply(){ a = document.getElementById("rate").value; b = document.getElementById("qty").value; c = a*b; amt = alert(c); … | |
Hi Friends I am trying to get the value of select dropdown item in a text box, but i am unable to get it. I am using ajax for dropdowm method. please any one can help one.php [CODE]<?php session_start(); include("config.php"); // Check, if username session is NOT set then this … | |
Re: Hi In line number 21 the statement is [CODE]mysql_query("SELECT*FROM Products='"$result"'"); [/CODE] [CODE] Please change as mysql_query("SELECT*FROM Products='$result'"); [/CODE] | |
Re: HI Pls check the below code Line 31 [CODE]Address line 2: <input type="text" size="15" maxlength="40" name="address2"><br/>[/CODE] LIne 33 [CODE] City*: <input type="text" size="10" maxlength="15" name="city"> [/CODE] | |
Re: Hi try to use addslashes as shown below [CODE]<?php $str = "Who's Kai Jim?"; echo $str . " This is not safe in a database query.<br />"; echo addslashes($str) . " This is safe in a database query."; ?> [/CODE] | |
Re: [CODE]header("location:bird.php")[/CODE] It refer to redirection to bird.php page | |
Re: Hi pls try to get the hindi values in unicode formate. it will be more help | |
Hi Friend I need a alert msg display in php, without using javascript. Pls help me to solve it [CODE]$pqty = $bdatam["sum(curr_qty)"]; $pamt = $bdatam["sum(curr_amount)"]; $btotal= $bgtqty+$pqty;[/CODE] i want to display $btotal in alert msg display. Pls help me | |
| |
Hi Friends we are planing to move for Mac OS, But i am new to Mac OS.please Help me is it possible to use the below things in Mac OS 1. PHP syntax same or differ 2. Javascript is Supportable or Not 3. Support for Web Services Pls Help Me | |
Hi Friend I am having Toshiba Laptop Satellite Pro L550D model with PSLXTE serial, I have formatted the system and i installed windows 7 home premium, but my USB drive is not getting detected, I’ve checked my bios it shows USB driver is Enable. But I don’t have driver CD … | |
HI Sorry for opening the thread, i have some issue please help me in solving the below one [B]Javascript[/B] [CODE]<script language="javascript"> function line(elem,amt,res_elem) { var qty=document.getElementById(elem).value; var tot_amt=qty*amt; //document.getElementById(res_elem).value = tot_amt; document.getElementById(res_elem).value = Math.round(tot_amt*100)/100; } </script>[/CODE] PHP [CODE] <?php $cate_code=$_GET['ct']; $civrform=$_GET['vrform']; $site=$_GET['site_name']; $desr="select * from site_rate where category_code='$cate_code' AND sitename='$site' … | |
Re: Hi We have to use mysql_query first and then we have place mysql_fetch_array syntax. | |
Re: what are the field u are using to stored the data in ur DB | |
Hi Friends I have pasted the code below which i was used in my project. But i am getting mysql_fetch_array() error. For your more information i have attached the screen shot of the error Pls give me solution [CODE]<?php // Inialize session session_start(); include("../config.php"); // Check, if username session is … | |
Re: HI Pls post some example screen shot for more reference | |
Hi Friends i am having one master table for category which contain 7 fields, i am having sitename as a table which contain 8 fields, if i create [B]newsite[/B] name then it has to copy all the fields from master table in addition to that it has to display the … | |
Hi Friends Pls help me, i have posted the code below, i am trying to multiply 2 text box values from thisqty and prate and final value has to be show in thisamt text box, and also i have attachment the screen shot [CODE]<form method="post" action="#" enctype="multipart/form-data" name="billing"> <table width="1000" … | |
Re: Hi I think you have missed [B]}[/B] before [B]</form>.[/B] Pls check it | |
Re: Hi I have collected the below script from web and modified as we wish. I think it will be more helpful for you eg.php <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#wait_1').hide(); $('#country').change(function(){ $('#wait_1').show(); $('#result_1').hide(); $.get("func.php", { func: "country", drop_var: $('#country').val() }, function(response){ $('#result_1').fadeOut(); setTimeout("finishAjax('result_1', '"+escape(response)+"')", 400); }); return false; … ![]() | |
Re: Hi we will export excel file with help of phpclass and we can store the file in any path of your system. | |
Hi I am using Xampp Server in my machine, i used php mailer (class.phpmailer.php), when i run the mail file, i am getting the below error msg Could not execute: /var/qmail/bin/sendmail Please help me to solve this issue. | |
![]() | Re: Hi $summerdraft=htmlentities(stripslashes($_POST['draft'])); i think the above line should be as below $summerdraft=htmlentities(stripslashes($_POST['summerdraft'])); ![]() |
Re: Hi Friend Please try the below thing, i don't know how helpful for you... [CODE]<html> <head> <LINK href="style.css" rel="stylesheet" type="text/css"> <META name="description" content="SWTOR archives is a database packed full of information regarding weapons, equipment and many more items in Bioware's MMO Star Wars: The Old Republic."> <META name="keywords" content="swtor, star … | |
Re: HI I am using fpdf, its working fine. If possible, pls try it |
The End.