Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #2K
~15.0K People Reached
Favorite Tags

24 Posted Topics

Member Avatar for youvi

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]

Member Avatar for gabrielcastillo
0
297
Member Avatar for shahbaz13

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 …

Member Avatar for VIJAY_13
0
5K
Member Avatar for code739

If it does matter... then try `strtolower` it will convert the string to lower case...

Member Avatar for code739
0
113
Member Avatar for johndohmen1963
Member Avatar for johndohmen1963
0
1K
Member Avatar for shahbaz13

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 …

Member Avatar for shahbaz13
0
516
Member Avatar for shahbaz13

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... …

Member Avatar for Begginnerdev
0
157
Member Avatar for Griffin54

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>

Member Avatar for lps
0
238
Member Avatar for shahbaz13

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]

Member Avatar for shahbaz13
0
218
Member Avatar for maxxxx
Member Avatar for charisma
0
98
Member Avatar for prasanna123

This is easy to use.... http://www.onextrapixel.com/2011/06/03/how-to-create-a-horizontal-dropdown-menu-with-html-css-and-jquery/

Member Avatar for shahbaz13
0
92
Member Avatar for BenzZz
Member Avatar for BenzZz
0
190
Member Avatar for Virangya

Using [ICODE]position:fixed[/ICODE] may fix this... But it may not work in IE without declaring [ICODE]<!doctype html>[/ICODE]...

Member Avatar for Virangya
0
1K
Member Avatar for geneh23

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]

Member Avatar for shahbaz13
0
161
Member Avatar for Aviplo

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 …

Member Avatar for Aviplo
0
3K
Member Avatar for tech_man_12
Member Avatar for shahbaz13
0
633
Member Avatar for shielaolid

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 …

Member Avatar for shielaolid
0
207
Member Avatar for akhtar.ali803
Member Avatar for kemkoi

Try using the link utl insted of javascript:;... Or use [code]onclick="window.location = 'yoururl.html';"[/code]

Member Avatar for Troy III
0
109
Member Avatar for labise

[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...

Member Avatar for shahbaz13
0
123
Member Avatar for murad2012

[CODE]if ($checkuser = "" || empty($checkuser) || $checkuser = null) { \* do something *\ }[/CODE] Try this

Member Avatar for shahbaz13
0
292
Member Avatar for daniel36

Try this [CODE] $arrays = explode(",",$licencekeys); foreach($arrays as $array) { echo "Licence Key 1 : $array Licence Key 2 : $array"; } [/CODE]

Member Avatar for diafol
0
159
Member Avatar for shahbaz13

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..

Member Avatar for shahbaz13
0
57
Member Avatar for shahbaz13

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; …

Member Avatar for shahbaz13
0
103
Member Avatar for shahbaz13

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"]; …

Member Avatar for shahbaz13
0
113

The End.