Posts
 
Reputation
Joined
Last Seen
Ranked #586
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
96% Quality Score
Upvotes Received
24
Posts with Upvotes
18
Upvoting Members
15
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
4 Commented Posts
4 Endorsements
Ranked #396
Ranked #2K
~31.1K People Reached
About Me

Senior PHP and .NET Framework developer

Interests
Programming
PC Specs
The beast: Custom EmperorLinux Koala E7240 i7 Dual Core 2.1 GHz, 16 GB DDR3, 500 GB mSATA SSD, Gobi…
Favorite Tags
Member Avatar for Shilpa_5

Hi Friends !! Which SEO plugin is best suit for word press site? Someone suggest All in one and another suggest Yoast plugin so which is best.

Member Avatar for johnp72014
0
281
Member Avatar for Ritesh_4

Hello I have a Windows 10 Pro (v.1511 - x64) PC, whereby in the "Update & Security" window it shows that updates are available, for example "Definition update for Windows Defender", "Security update for ASP.NET..." and so on, but it does not download the update at any point in time. …

Member Avatar for rproffitt
0
502
Member Avatar for priyanshi_1

hi..so i am facing problelm how to upload data on my websites in which format (.pdf,etc) should upload data and how to do it.

Member Avatar for priyanshi_1
-1
232
Member Avatar for find_1

How to take the maximum digits file linked with the folder using perl? my $location = $output_dir; print $location; open LOGFILE, $location; my $first_line = 1; #print $first_line; my $max_id; while (<LOGFILE>) { if (/rev_(\d)+/) { if ($first_line) { $first_line = 0; $max_id = $1; } else { $max_id = …

Member Avatar for find_1
0
331
Member Avatar for reminem

Hello everybody, I'm stuck with this and I hope there is somebody who can help me. I have a Form <html> <form action="" method="POST"> <input type="text" name="credentials[firstname]"> <input type="text" name="credentials[lastname]"> <input type="text" name="credentials[email]"> <input type="text" name="game[points]"> <input type="text" name="game[wins]"> <input type="submit" name="submit"> </form> </html> and I want to post the …

Member Avatar for Isaac_4
0
367
Member Avatar for Tony_20

Hello ladies and gents, i hope you are all well! Just recently joined this site looks great and easy to use. I am just getting into php and msql i have managed to create a table that spits out the data but i am looking for a really simple way …

Member Avatar for diafol
0
3K
Member Avatar for ram_10

Hello, I'm trying to read a serial port data from a controller and plot it using chart. I could read the data from the controller and see the data in a textbox earlier. Now I'm trying to use a chart along with the textbox. There are complication when I'm trying …

Member Avatar for ram_10
0
1K
Member Avatar for Usman_11

#include<stdio.h> #include<conio.h> #include<Windows.h> #include <time.h> #define A 3// name a constant struct book { char name[20]; int ID_card; int contact_number; int dd; int mm; int yy; long int booking_ID ; } customer_records[A]; void main() { void Display_reservation(); void reservation(); void cancelation();//prototype int ch= 0; do { system ("cls"); printf("\n \n …

Member Avatar for Nisar_3
0
356
Member Avatar for joshl_1995

Hello Daniweb, I'm going to moving houses soon, a house we might be moving into has a bungalow and I was wondering how I'd go about running ethernet from the house to the bungalow? My idea was to some how run the ether from the house to outside then dig …

Member Avatar for rubberman
0
656
Member Avatar for rhodoscoder

What i'm i doing wrong? here is my code FUNCTIONS.PHP <?php function get_header(){ include 'header.php'; } function get_footer(){ include 'footer.php'; } HEADER.PHP <?php function set_title($title){ echo $title; } ?> <!DOCTYPE html> <html> <head> <title><?php set_title();?></title> <meta charset="UTF-8"> <meta name="description" content="Photography site" /> <meta name="keywords" content=" Angelic Photography" /> <!-- <link …

Member Avatar for rhodoscoder
0
203
Member Avatar for SimonIoa

Hello i have a problem with my website. It is running slow. I asked the my server provider why is that, and they replied its because the webiste uses many embedded urls like youtube, vimeo, dailymotion and so on. And so i have to cache these embedded urls. I tried …

Member Avatar for SimonIoa
0
592
Member Avatar for ashalatha

How to delete Data from multiple tables. For example Iam having category id in one data base table .in another data base table iam having this id if i delete category id it should display a message as first delete in that table if the id is there in that …

Member Avatar for Isaac_4
0
526
Member Avatar for Nirmala_1

Hi, all. Currently i am facing some problem with my coding. I am used this code to insert data from multiple checkbox values into database. but its still not happen anything. Sorry, i am new to php. Please can anyone help me on this? I would be more appreciate if …

Member Avatar for Isaac_4
0
2K
Member Avatar for davy_yg

Hello, I am trying to troubleshoot this problem using codeigniter. I am following a tutorial and getting this error after installing the ready-to-use-uncomplete-ci-script. Therefore, I still have to edit things out to make it work, which not all of them is being taught in the tutorial. ---------------------------- // all of …

Member Avatar for davy_yg
0
351
Member Avatar for davy_yg

Hello, I am trying to create a table which has a sort feature. I mean whenever someone click the table header, the table content must be sorted based on the header. how to do so? Here is my table codes: index.php <!-- Insert New --> <br><br><br><br> <div id="inputberita"> <p>&nbsp;</p> <p>&nbsp;</p><center> …

Member Avatar for davy_yg
0
340
Member Avatar for bro_1

how to remove php extension in .htaccess example media.php?page=test

Member Avatar for Isaac_4
0
223
Member Avatar for Isaac_4

Here is a simple way to insert into a database that isn't much harder than using string concatenation - which we all know is very dangerous due to SQL injection attacks. Put the code snippet into `database.php`. Now, in a script handling a form post, such as `post_reply.php`: <?php require_once("database.php"); …

Member Avatar for diafol
4
498
Member Avatar for shayan_doust

Hello everyone. I have just bought a new computer and I am currently working on creating an online cloud storage service. Every thing is going fine until I am struck with a problem. At first, registering a new user works and the data is inserted into database but after testing …

Member Avatar for matrixdevuk
0
2K
Member Avatar for awahqn

hi everyone, in my server, i am running a script thats uses curl heavily and it usually takes about 5 minutes to finish running. It used to wokr in my previous server, however, once i moved into my new server, it runs only for 30 seconds. In my php.ini, the …

Member Avatar for gabrielcastillo
0
4K
Member Avatar for fheppell

I have some code that takes a URL and downloads it using CURL. Here's the code: $url= $row['loc']; $path = 'tmp/'; $path .= rand(100,999); $path .= $row['name']; $fp = fopen($path, 'w'); $ch = curl_init($url); curl_setopt($ch, CURLOPT_FILE, $fp); $data = curl_exec($ch); curl_close($ch); fclose($fp); $downloadarray[] = array($path, $row['name']); However the file is …

Member Avatar for Isaac_4
0
287
Member Avatar for sammry

This is a SMS DLR application from http://www.smsgatewaycenter.com which is sent by them to my client's url and I need to configure for my client the same from my client's url to his reseller's url. This script uses every 1 hour to post data to my client's reseller/customer. So, it …

Member Avatar for Isaac_4
0
2K
Member Avatar for grakovski

Link for API: [Click Here](http://api.uptimerobot.com/getMonitors?apiKey=u118216-ae6b502f1b3f6d272d0f9437&logs=1&alertContacts=1&responseTimes=1&responseTimesAverage=180&format=json) I want to get datetime and type parameters i try to but i get: Notice: Trying to get property of non-object Here is my try t $api_key = "apikey here"; $server = "http://api.uptimerobot.com/getMonitors?apiKey=$api_key&logs=1&alertContacts=1&responseTimes=1&responseTimesAverage=180&format=json"; $server2 = file_get_contents($server); $obj = @json_decode($server2); $cc = $alert->datetime; echo $cc; its …

Member Avatar for Isaac_4
0
385
Member Avatar for spiderling

I am trying to find out if it is possible to [B]edit/add to[/B] an existing PDF file with PHP. I have a PDF agreement document that needs to have the client's name inserted on the blank field. The document will then be printed for their signature. I've created PDF's with …

Member Avatar for Isaac_4
0
7K
Member Avatar for davy_yg

Hey I am trying to create forget password feature. When a user forget the login password an email address must be send to his/her email with a password reset link. I wonder how to do so? I have the user password stored in the database I can retrive it easily. …

Member Avatar for davy_yg
0
492
Member Avatar for davy_yg

//LOAD IMAGE TABLE $filename = $_FILES["file"]["name"]; $image_info = getimagesize($filename); $image_width = $image_info[0]; $image_height = $image_info[1]; echo "filename1 : ".$_FILES["file"]["name"]; echo "filename : ".$filename; echo "image info : ".$image_info[0]; echo "image info : ".$image_info[1]; echo "image width : ".$image_width; echo "image height : ".$image_height; filename1 : feature1.png filename : feature1.png image …

Member Avatar for davy_yg
0
2K
Member Avatar for shammi.khan.73

So I spent an hour on GoDaddy and Google and didn't get a definitive answer. Does GoDaddy's shared Windows Hosting plan support .NET 4.5.1? I found a page in their support section that mentions that the shared hosting plan supports .NET 4.5. But is that enough to run my website? …

Member Avatar for Mark_28
0
210
Member Avatar for javed.iqbal.3979

Hi all, I am here for a serious suggestions!!! I am new to web applicatons using C#.I want to clarify a few things please. 1). I'm using VS 2013 .Does it contains SQL Server built-in .if Yes,which version? 2).Should i head to Web Applications using MVC etc. or simply? 3). …

Member Avatar for JorgeM
0
326
Member Avatar for chaze

This might be the vaguest question in the history of Daniweb but I have php chat program that is great all for one thing. It will not make any noise. If anyone wants to take a poke at it. I can post logs, even give access to it, and try …

Member Avatar for gabrielcastillo
0
136
Member Avatar for Sumith Asanka

Hi Guys I have a Problem With My Asp.net Application Which is runing on asp.net 4.0 with vs 2010 Recently i have added Ajax toolkitscriptmanager, After that my Java Script Alert Messges are not woking ? Other Pages which doesn't have toolkitscriptmanager are ok, are they not compatible ? I …

Member Avatar for Isaac_4
0
156
Member Avatar for HardikParmar

Hey I am also facing the problem with the nested griview. I have five nested gridview. When I click the button in the innser most gridview's text box comma is generated. That is giving me lots of problem. Please solve my issue It is also giving me the same problem. …

Member Avatar for Isaac_4
0
45