24 Posted Topics
Re: This is as same as send a mail with PHP. You wil need a sms gateway provider. Googling a bit could solve your problem. The code will be [code] mail('phoneno@smsgatewayprovider.com',''subject','message'); [/code] | |
Hello, I want to insert single or double quotes into mysql without using \ or anything else i tried mysql_real_escape_string but it did not work it gives SQL Syntax Error : Check what to use near error...Plz Help... Here's the code... [CODE]<?php $name = isset($_POST['name']) ? $_POST["name"] : ""; $description … | |
Re: If it does matter... then try `strtolower` it will convert the string to lower case... | |
Re: What error does it show? OR Where? What isn't working?? | |
Hi there, I am making a spell checker program with php with words stored in mysql. I use it to check unicode languages. But I do not get good suggestions with similar_text with percentage above 82. But if I decrease this percentage, I get many useless words. How can I … | |
Hi there, I have made a spell checker in PHP which does spell checking by splitting the words by space, checks wheather the word is spelled correctly from a database dictionary, if not, It shows some suggestions when a user clicks on it and also highllights the wrong spelled word... … | |
Re: Put that dic inside a another div and set the outside div align to center. Like <div algin="center"> <div>Your Main Content</div> </div> | |
I need to convert this code to web.config file. Plz Help.. #Fix Rewrite Options -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d Rewriterule ^(.*)$ $1.php [L,QSA] | |
Re: I think using PHP or any other language may fix this... | |
Re: This is easy to use.... http://www.onextrapixel.com/2011/06/03/how-to-create-a-horizontal-dropdown-menu-with-html-css-and-jquery/ | |
Re: Try by send a reset password link to the user by email... | |
Re: Using [ICODE]position:fixed[/ICODE] may fix this... But it may not work in IE without declaring [ICODE]<!doctype html>[/ICODE]... | |
Re: Try this... but not sure if this could help you as this trims the text [CODE]substr($field1a, 0, 45); /* 45 is the characters count you want to show... */[/CODE] | |
Re: Using html... you can create a div tag and put the content in it... like [CODE] <div id="content" align="center"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500s, when an unknown printer took a … | |
Re: Try Facebox, it's easy to use [url]http://defunkt.io/facebox/[/url] | |
Re: As ardav said you can use the $_GET['login'] method... If you do not want to use this method, use the other method. In this method, you will have to place the above code on the login page and use the request type method i.e. [CODE]if($_SERVER['REQUEST_METHOD'] == 'POST') { }[/CODE]... Try … | |
Re: This means that your password is not correct... | |
Re: Try using the link utl insted of javascript:;... Or use [code]onclick="window.location = 'yoururl.html';"[/code] | |
Re: [CODE] echo "<item>" . $line["id"] . "</item>\n"; echo "<item>" . $line["product_name"] . "</item>\n"; echo "<item>" . $line["price"] . "</item>\n"; echo "<link>http://www.yoursite.com</link>\n"; [/CODE] Use this... | |
Re: [CODE]if ($checkuser = "" || empty($checkuser) || $checkuser = null) { \* do something *\ }[/CODE] Try this | |
Re: Try this [CODE] $arrays = explode(",",$licencekeys); foreach($arrays as $array) { echo "Licence Key 1 : $array Licence Key 2 : $array"; } [/CODE] ![]() | |
Hello everyone, I want to make an Twitter like AJAX post viewer like if we click on any link, it opens in a new sliding div like Twitter's... Plzz. Help... Thanks in Advance.. | |
Hi, I am trying to display images from my db with the following code.. [CODE] <?php include_once("scripts/connect.php"); if ($q == "All Images") { $sql = mysql_query("SELECT * FROM gallery"); $q = "All Images"; } else { $sql = mysql_query("SELECT * FROM gallery WHERE caption LIKE '%$q%'"); } $limit = 7; … | |
Hi, I have made a script to search my database. But when I execute it, it shows only one result. I even checked the database but there were many entries like this. here's the code... [CODE]<?php // Made by Shahbaz Singh July 2011. All Rights Reserved. Webdhaba.in $q = $_GET["q"]; … |
The End.