- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
19 Posted Topics
Re: Shanti's Attempt is quite good.. But how to disable Copy and Paste events using Mouse.. | |
I am having a table with nvarchar feild in which values are entered like 1 4 8 25 I want a sql query to find the missing sequence of number in the above series... Thanks in advance... | |
Hello Everybody.. Can you suggest me PHP code to check whether a domain is available or not... Thanks in Advance | |
I want to create a page like http://uhbvn.org.in/web/portal/faqs With Expand and Collapse all link Along with functionality of Individual Slide Toggle Feature I already worked like http://yamunanagar.nic.in/g/FAQs.asp But in this i have to create separate function for each toggle question Thanks in advance | |
Dear Experts. I have a domain registered www.example.com and a subdomain subdomain.example.com and a subdomain mail.example.com I want my subdomain to redirect to another ip and domain should be redirected to another ip Like mail.example.com --> gmail.com example.com-->173.00.158.** subdomain.example.com -->> 154.**.589.46 Please help me.. Thanks in advance | |
I am retriving image from mysql database and want to hyperlink this processed image but not able to find solution for ($i = 0; $i < $rows; $i++) { $description = mysql_fetch_array($result); $img_str= base64_encode($description["nImage"]); echo '<a id="zoom" href="data:image/jpeg;base64,'.$img_str.'"><img src="data:image/jpeg;base64,'.$img_str.'" width="150" height="150" /></a>'; if($i%3 == 2) echo "</br>"; } | |
<?php $host = "localhost"; $usr = "root"; $pwd = ""; $db= "DB"; conOpen($host,$usr,$pwd,$db); function conOpen($host,$usr,$pwd,$db){ $con=mysql_connect($host,$usr,$pwd) or die ("Connection Failed "); mysql_select_db($db,$con);} $rows_per_page=5; // database connection stuff here $result=mysql_query("Select * from newsimage"); $pages=ceil(mysql_num_rows($result)/$rows_per_page); if (!isset($screen)) $screen = 0; else echo $_GET[screen]; /* $start = $screen * $rows_per_page; $sql = "SELECT … | |
Re: Main file code is <?php $host = "localhost"; $usr = "root"; $pwd = ""; $db= "db"; conOpen($host,$usr,$pwd,$db); function conOpen($host,$usr,$pwd,$db){ $con=mysql_connect($host,$usr,$pwd) or die ("Connection Failed "); mysql_select_db($db,$con);} $row = mysql_fetch_object(mysql_query("SELECT * FROM newsimage order by nId")); echo '<img src="imgShow.php?id=' . $row->nId . '">'; ?> Image file code is <?php include("inc/dbd.php"); echo … | |
Firstly Thanks in Advance.. I am trying to store an image in BLOB form into database and want to show that image on browser on retriving it from database.. Code used to convert image to blob is given below.. `ini_set('display_errors', 'On'); error_reporting(E_ALL); $img=file_get_contents("$_file[tmpname]");` but i am not able to display … | |
I am using the below code ( PHP - Ajax ) ..It works fine on firefox,chrome, Bu not works on IE... Please help me as i am new to PHP-AJAX Thanks in Advance =============== var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else … ![]() | |
I want to know that how convert image ( JPEG ) into binary conversion and then store it into mysql database and then how to display this image after fetching the record from mysql database... Thanks in advance... | |
I want to load three list boxes where 2nd list box is loaded on the basis of selection of 1st list box and 3rd list box is loaded on the basis of selection of 2nd list box.. . | |
Hello everyone.. .. Plz help me ..How to work for a payment through net banking.. in PHP.... So that client client can pay through net banking and amount will be transferred into my bank account.. I hear that it requires a payment gateway.. . If is it so then how … | |
Re: Try this code to see effect of CSS code HTML CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body class="CSSStyle"> CSS Style </body> </html> ________________________________ CSS FILE CoDE ________________________________ @charset "utf-8"; /* CSS … | |
Hello everyone.. How to print web page in PHP without Header and footer when print button is clicked by user Thanks in advance | |
I want to create a dynamic drop down list box in which Locality is loaded on page load then Depending upon selected Locality... Sub locality , Ward will be Loaded... .. I done it by using form with 'get' method.. but I want to done it using post method.. so … | |
I have created a report using NAVICAT Report Tool Report has an extension RTM . How..Do i run this report on Online web server.. | |
I am new to PHP and wanted to know that which reporting tool is used PHP/MYSQL based projects... to fetch data from mysql using php from which pdf can be generated also.. As Crystal report 11 has lots of good functionallity but doesn't has support for php . . So … | |
Hi.. I am new to PHP Mysql and i am facing following problem.. .............................. Database 1 [COLOR="Red"]G[/COLOR] 1 [COLOR="red"]G[/COLOR] 1 [COLOR="red"]G[/COLOR] ........................... I want to print records like this ........................... 1---[INDENT]g[/INDENT] [INDENT]g[/INDENT] [INDENT]g[/INDENT] .............................. As we do in in crystal reports ( suppress if duplicated ) ALSO PLEASE SUGGEST ME … |
The End.