Hi All,
I am using google maps API for searching houses in a city(any location). In maps, by default markers will be loaded based on database results and user need to select locations they are...
Type: Posts; User: hemi519; Keyword(s):
Hi All,
I am using google maps API for searching houses in a city(any location). In maps, by default markers will be loaded based on database results and user need to select locations they are...
Hi All,
I am struck with some issue in jquery. i want to set a php variable inside jquery. Following is the jquery function i am using
$("#edit").on("click", function() {
var yearss =...
Hi All,
I am integrating two websites with one login. One website is done in Core PHP(movies website) and the other one is SocialEngine(Zend, Social Networking Site). For both websites database...
Thanks, Working fine
My real situation is to find count of matching words in two arrays
$array1 = array("foo", "baar", "checkers","cricket","games"); // static
$array2 = array("foo","running","tennis","games");...
Hi All,
Can anyone tell me how to convert string into array. Following is my issue
i want to convert
$string = "foo,bar,hallo,world"; // in one string
to
I have changed my function as below
function jobs()
{
$sql = mysql_query("Select Id,Name from jh_job_type where Status = 1");
while($result = mysql_fetch_array($sql))
solved :)
Thanks For ur suggestions.
Sphinxsearch is having its own custom rankers. It will give results according to "index weights".
Searching for "cats" will also pull up "cat". But first results...
Hi All,
I want to convert mysql results into associative array like below
function jobs() // previously i was using this function and i was declaring as mentioned in $job_arr
{
...
I have found an alternative to do all my kind of search(multiple keywords). I am using sphinxsearch. This solved all my issues.
But first i have to concat required fields as you mentioned. Thanks...
Thanks to both of you, I will try those methods and will come back with result ASAP
Hi All,
I am having search functionality in my website, it allows user to type multiple keywords separated by comma(ex: php,3years,bangalore).
I am having 4 to 5...
Hi All,
I am developing a app which has the functionality similar to facebook. I want to know how can i get notification like they have in their app. I have done everything, whenever i refresh my...
Thanks for the info. For now i will go with following because i am using MyIsam
INSERT INTO `user` (username,password,age,gender) Values ('avc','****','12','1');
SELECT `id` FROM `user` WHERE...
Hi All,
Can anyone tell me how can i get a last inserted unique user id. Following is my Scenario
Every-time a user is created in my website, all his info will be stored in "user" table...
Hi All,
I am facing issues in form validations, i want to validate on the three fields(home phone,mobile phone, work phone) in my form. How can i do it
<div class="pro"...
Hi All,
I am having three textboxes which will autosuggest accordingly. I am able to get the values statically but i need it through my database. I dont know how to call php values from another...
Hi All,
I am facing a issue in changing the date format of a column in my database. Below is my code
$fromdate = $_REQUEST['fromdate']; // this date is in format 22-06-2012
thanks for the info, but, is there a way to execute a url without redirecting it to new page through php script
Hi All,
I am not exactly sure if i am doing it coreect or not but my issue is, in my site whenever user login into site a sms will go to the site-admin; For that i am using curl as mentioned below
Hi All,
In my program i am running a while loop which will produce one row for every loop, Now if you see the table user(9754) is there multiple times. Now i want to make sure that it is taking...
I am sry, i was having issue in my coding, everything is working fine, onceagain thanks
In my coding there are two while loops which will produce customer-id and their amount
$array []= $customerid;
$array []= $amount;
// following is outside of two while loops...
Thanks for both of you, it is working perfectly. But one last help
I am getting array in this format
Array ( [0] => 2644 [1] => 10 [2] => 2644 [3] => 50 [4] => 2644 [5] => 10 [6] => 5172...