39,388 Topics
![]() | |
Hello I want to count online users in my website. The way which I found in most of the websites is that to insert a new row in a table containing user's IP and visit time and consider an idle time for example 3 minutes and in each visit delete … ![]() | |
I have recently been working on a job with a client who gets their data from county data. The county data is contained in .dbf files. Every year the data is updated and my client will get a CD/DVD from someone containing the county data in .dbf format. Now the … | |
Hi Friends, I am trying to send a file via email and upload on a server as well, but unfortunately the file uploaded successfully while attachment sent to email there when i preview or download so it contained error, below following code is: <?php if(isset($_POST["Submit"])) { $to = "abc@gmail.com"; $subject= … | |
I am using PHP Simple HTML DOM Parser * [Manual] to fetch data from websites. Now what i wanna do is to remove first three words from all span which has `class="yeah"` from the fetched content So i have implement this code but it has a problem: foreach($html->find('span.yeah') as $xdat) … | |
Hi when i submit a form the session id changes in a page (and stick the same in single tab for other pages) but it is different in different tabs. how to fix that ? thanks in advance ![]() | |
Hey everyone, I'm having a trouble with the navigation bar when redirecting users to other pages. For example, if a user logs in, then they will be redirected to the main page (mysite/index.php) but the url displays as mysite/login.php which is the pure PHP script that doesn't contain any HTML … | |
Hi all. I have a site with articles and members and since the url ends for both like.. site.com/articles.php?id=232 or site.com/ref.php?user=3232 I costumised this script I found online to costumize the url. I did for the profiles which is working, but I can't add for the articles: RewriteEngine On RewriteCond … | |
I am making a basic craigslist type website with a search function. There is a field where you can enter what you think the name of the product might be and my search function is supposed to find names of products that match. so for example a user can enter: … ![]() | |
How to calculate the total working hours of an employee from a set or records? I have a table named timetable. it contains id,in_time,out_time. id varchar(20) att_date date in_time timestamp out_time timestamp the sample details are id date in_time out_time C001 2009-10-31 2009-10-31 11:30:00 2009-10-31 12:00:00 C001 2009-10-31 2009-10-31 12:30:00 … ![]() | |
Please Help!! i have been trying to get some help on displaying data from mysql in a sequence (like a course). basically i want my student to view and learn the couurse that has been saved in mysql database in learningmaterial table, the table contains images, audio files, online documents … | |
Would apreciate if someone can help with below solution. I need to put customer registration details to the third party database via api requests using Get variables. I have the folowing information. https://www.thirdparty.com/API/Request.ashx?command=createcustomer&username=_&password=_&customer=_&customerpassword= Variable Value Description command createcustomer username X..140 the username of the reseller password X..100 the password of … ![]() | |
Hey guys! So I've been working on a plugin which allows people to add an iframe depending on the input fields and then that is displayed when a shortcode is created. However It isn't making it a shortcode. <?php /* Plugin Name: Minepress Minecraft Dynmap Plugin Plugin URI: http://minepress.co.uk Description: … | |
i want that by pressing the one button ,the input data should be send on my both following domains.but by this coding the data just send to the 2nd domain.. `Inline Code Example Here` <form name="Form1" method="post"> <strong><span style="font-size: small;">Username:</span></strong><input name="username" type="text" /><br /> <strong><span style="font-size: small;">Password:</span></strong> <input name="password" type="password" … | |
> hey guys, how to get all word in first index in array below and next index get last word in array 2 D??,.. example: $arr = array( array( '7'=>'repsol kawasaki honda ktm', '8'=>'kawasaki honda ktm bmw', '9'=>'honda ktm bmw ducati', '10'=>'ktm bmw ducati yamaha' ) , array( '23'=>'lamborghi ferarri … | |
I want to echo "the select statent to output the total working hours" <?php error_reporting(0); $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("ms", $con); $id = $_REQUEST['id']; $result = mysql_query("SELECT id , SEC_TO_TIME(SUM(TIME_TO_SEC(out_time) -TIME_TO_SEC(in_time))) AS working_hours FROM timetable GROUP BY id;"); echo "<center><table cellspacing='6'> … ![]() | |
I want to echo "the select statent to output the total working hours" <?php error_reporting(0); $con = mysql_connect("localhost","root",""); if % ![]() | |
Say I have two drop down boxes, and I have two columns then after I select the two columns that pulls from the stock tables to give me a total.. Whats the best way or does anyone have an example? Ex Boxes - Yellow box - Red box = All … | |
> hey guys, how to bold or strong value (string) array 2 D below?? Array ( [0] => Array ( [0] => <b>abcd<b/> [1] => <b>efgh<b/> ) [1] => Array ( [18] => <b>ijkl<b/> [19] => <b>mnop<b/> ) [2] => Array ( [28] => <b>qrst<b/> [29] => <b>uvwx<b/> ) ) ![]() | |
Hi guys. I picked up a search script on the net but can't get it to paginate at all. Please have a look and help me out. <?php // Get the search variable from URL $var = @$_GET['q'] ; $trimmed = trim($var); //trim whitespace from the stored variable // rows … ![]() | |
Dear all, how i can fetch image path in input field. when i update form the image path has lost their path so it is not updated so please do some help. thanks ![]() | |
I'm trying to set up a mail server using gmail. So far after modifying code in C:\wamp\bin\apache\apache2.2.22\bin\php.ini. It hangs the page and just loads the browser. I have read that it has to be used with PHPmailer but I don't know how to. Please help me how to set up … ![]() | |
Hi all, I am having this problem, which I cant seem to find out why is happening. I have an onchange function on one select list, which returns another select list just under, with values to choose from. But when the form is submitted, PHP gives me an error: Undefined … ![]() | |
Been trying to loop through worksheets in an excel document. And remove "," in columns. Then save result in same excel document. <?php include'../Classes/PHPExcel.php'; include'../Classes/PHPExcel/IOFactory.php'; $objReader = PHPExcel_IOFactory::createReader('Excel2007'); $objReader->setReadDataOnly(false); //$xlsxfiles=$_SESSION['file']; //echo $xlsxfiles; $objPHPExcel = $objReader->load('../upload/Test_0.xlsx'); $num=$objPHPExcel->getSheetCount() ; $sheetnames=$objPHPExcel->getSheetNames() ; $objWorksheet = $objPHPExcel->getActiveSheet(); $highestRow = $objWorksheet->getHighestRow(); $sheetnum=$num-1; for($sl=0;$sl<$sheetnum;$sl++) { for($cl=0;$cl<$highestRow;$cl++){ $clean= … ![]() | |
![]() | Hi I'm having an issue echo out the `euro currency` sign with the price converted base on the `$exchange_rate = 0.7746;` Here is my code: <?php $currency = true; $format = '€ %2f'; $exchange_rate = 0.7746; function currency_valve($data) { $price = $data[1]; $cpercent = $data[2]; $cvalve = isset ($_GLOBALS['currency']) && … ![]() |
I am looking into developing a few websites, and I am debating whether to use asp.net or php. I am very proficient in asp; however, i have not used it in years, thus i don't remember the syntax very well. I do not want to use asp because it is … | |
Can anyone help, please? (The excellent solution on here for using an external SMS service does not "fit" ) My objective is to send an SMS "receipt" from an Agent's mobile (viewing our web page) instantly to the "payer" to acknowledge receipt of a (small) cash payment .... using the … | |
Hello! I'm attempting to create a application that randomly generates strings and tags it on the end of http://youtube.com/watch?v=.... but the links it generates links to a non existant video. I noticed there are more capital letters in their URL's but that's the only difference I can see. Here is … | |
I'm attempting to wrap an auto-generated link around a thumbnail displayed from a Mysql database. Can someone help me with the syntax? `echo "<a href= 'http://www.website/link.php?field=".urlencode(img src='".$showimage"' height='10px' width='50px' />) . "'>$showimage</a>";` Thanks! | |
![]() | Hey i am passing a string to an array and using the str_split. ` $string = "Green"; $array = str_split($string,1); print_r($array); ?> ` what i want to do is split the string to individual characters but not store the character , i would like to convert each individual character to … ![]() |
<?php /* This file is protected by copyright law and provided under license. Reverse engineering of this file is strictly prohibited. */$OOO000000=urldecode('%66%67%36%73%62%65%68%70%72%61%34%63%6f%5f%74%6e%64');$GLOBALS['OOO0000O0']=$OOO000000{4}.$OOO000000{9}.$OOO000000{3}.$OOO000000{5}.$OOO000000{2}.$OOO000000{10}.$OOO000000{13}.$OOO000000{16};$GLOBALS['OOO0000O0'].=$GLOBALS['OOO0000O0']{3}.$OOO000000{11}.$OOO000000{12}.$GLOBALS['OOO0000O0']{7}.$OOO000000{5};$GLOBALS['OOO000O00']=$OOO000000{0}.$OOO000000{12}.$OOO000000{7}.$OOO000000{5}.$OOO000000{15};$GLOBALS['O0O000O00']=$OOO000000{0}.$OOO000000{1}.$OOO000000{5}.$OOO000000{14};$GLOBALS['O0O000O00']=$O0O000O00.$OOO000000{3};$GLOBALS['O0O00OO00']=$OOO000000{0}.$OOO000000{8}.$OOO000000{5}.$OOO000000{9}.$OOO000000{16};$GLOBALS['OOO00000O']=$OOO000000{3}.$OOO000000{14}.$OOO000000{8}.$OOO000000{14}.$OOO000000{8};$OOO0O0O00=__FILE__;$OO00O0000=0x2118;eval($GLOBALS['OOO0000O0']('JE8wMDBPME8wMD0kR0xPQkFMU1snT09PMDAwTzAwJ10oJE9PTzBPME8wMCwncmInKTskR0xPQkFMU1snTzBPMDBPTzAwJ10oJE8wMDBPME8wMCwweDU4Myk7JE9PMDBPMDBPMD0kR0xPQkFMU1snT09PMDAwME8wJ10oJEdMT0JBTFNbJ09PTzAwMDAwTyddKCRHTE9CQUxTWydPME8wME9PMDAnXSgkTzAwME8wTzAwLDB4M2EwKSwnRVZuL3pzbFgrZnZRUE9rUnhaU2dKTDlxVTg1aGRlMEtIV2MzN3dpRmJ1eTRDMkQxbWFvdGpUWU1ycDZJQU5CRz0nLCdBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWmFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6MDEyMzQ1Njc4OSsvJykpO2V2YWwoJE9PMDBPMDBPMCk7'));return;?>szcYQM`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B{b ![]() |
The End.