Posts
 
Reputation
Joined
Last Seen
Ranked #602
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
78% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
6
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
4 Commented Posts
~10K People Reached
About Me

Lazy Bum is what I am

Interests
Gaming, Listening to Music,
PC Specs
Turion X2 Ultra 64 ZM84, ATi Mobility Radeon HD 4570, 4GB DDR, 500 GB HDD, 17.3" HD LCD
Member Avatar for emclondon

Alright please bear with me for few posts, I am trying to design a scoreboard application using HTML. The data for scoreboard (including headings and rows and columns) are stored on a server at a remote location. I am trying to develop an ASP.NET script to fetch that XML and …

Member Avatar for emclondon
0
148
Member Avatar for gemini88

try this? class A { public void methodA() { Console.Write("This text is by methodA in Class A"); } } class B { public void methodB() { A Aobj = new A(); Aobj.methodA(); } }

Member Avatar for gemini88
0
547
Member Avatar for emclondon

I'm trying to upload an Image to PHP. The most common method I found out to do this was using FORM/POST; But that doesn't help me for what I am about to do. What I actually am trying to do is upload an image to PHP, the PHP Script will …

Member Avatar for pritaeas
0
685
Member Avatar for colton20

try clicking Help > About Eclipse > Installation Details check whether if you have Android Developer Tools in the list.

Member Avatar for emclondon
0
143
Member Avatar for bamous

If you have skype running, close it, and start apache. That should solve your problem. if that doesn't some other application is using port80; you will have to free it before you can use it for apache. Alternatively, you could change the port niumber of apache to start php.

Member Avatar for emclondon
0
181
Member Avatar for riahc3

here's something that I did earlier. index.html <!DOCTYPE HTML> <HTML lang="en"> <head> <title>First Demo</title> <META name="description" content="HTML5 JS Tutorial" /> <META name="keywords" content="HTML5,CSS,JavaScript" /> <META name="Author" lang="en" content="Prasanna K Yalala" /> <style type="text/css"> html,body { border: 0; height: 100%; font-family: arial, helvetica, sans-serif; } #popup{ display: none } #secret { …

Member Avatar for emclondon
0
184
Member Avatar for emclondon

Hello everyone, I'm trying to write a script which accepts URL by GET and then validates the URL before processing it. for the sake of arguement lets say that the URL I'm expecting is in this format http://mysite.com/myscript.php?url=http://blahblah.blahblah.bla/blahblah/blahblah/blahblah.bla http://subdomain.domain.tld/section/category/file.ext I need to validate the part which is a link to …

Member Avatar for pritaeas
0
120
Member Avatar for evilguyme
Member Avatar for YodaMerlin

either <?php $feed_url = “http://www.engadget.com/rss.xml”; $data = file_get_contents($feed_url); ?> get more info about that method [here](http://php.net/manual/en/function.file-get-contents.php). or <?php function getData($feed_url) { $curl_handle = curl_init(); curl_setopt ($curl_handle, CURLOPT_URL,$feed_url); curl_setopt ($curl_handle, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($curl_handle); curl_close($curl_handle); return $result; } var_dump(getData("http://www.engadget.com/rss.xml")); ?> Get more info about cURL [here](http://php.net/manual/en/book.curl.php) and [here](http://php.net/manual/en/ref.curl.php). Further reading …

Member Avatar for emclondon
0
195
Member Avatar for baz007

here's your solution. <!DOCTYPE HTML> <HTML lang="en"> <head> <title>First Demo</title> <META name="description" content="HTML5 JS Tutorial" /> <META name="keywords" content="HTML5,CSS,JavaScript" /> <META name="Author" lang="en" content="Prasanna K Yalala" /> <style type="text/css"> html,body { border: 0; height: 100%; font-family: arial, helvetica, sans-serif; } body{ background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(#CCCCCC)); background-color: …

Member Avatar for emclondon
0
169
Member Avatar for cpat258

calm down kid, I had to learn as fast as I can to answer your question. its kinda complex but once you get a hold of it, its easy as a pie. <!DOCTYPE HTML> <HTML lang="en"> <head> <title> Incident Report </title> <META name="description" content="HTML5 WebDatabase Tutorial" /> <META name="keywords" content="HTML,CSS,JavaScript" …

Member Avatar for emclondon
0
130
Member Avatar for mlhazan

try this. Maybe that would help? [CODE] /* database.inc.php */ <?php define("server","localhost"); define("conn_username", "root"); define("conn_password", "root"); define("database_name", "database_1.1"); ?> [/CODE] [CODE] /* index.php */ <?php require "database.inc.php"; class mysql { function connect() { @mysql_connect(server,conn_username,conn_password); @mysql_select_db(database_name); } function query($query) { $result = mysql_query($query); if (!$result) { echo 'Could not run query: …

Member Avatar for emclondon
0
164
Member Avatar for subrata_ushasi

[QUOTE=cereal;1756446]If you are referring to the e-commerce platform then look at system requirements: - [url]http://www.magentocommerce.com/system-requirements[/url] it works only on linux. Bye.[/QUOTE] You're mistaken. Magento Works on any platform as long as the platform runs a webserver with PHP/MySQL follow the steps: 1. Create an empty database in your SQL server. …

Member Avatar for veedeoo
0
375
Member Avatar for deyesborn

[QUOTE=StephNicolaou;1762837]I can't see line 38 in sendmail.php but that's the first place I would look according to your error message.[/QUOTE] You mis-read a part of the error wrong. The server displayed an error to check SMTP configuration details in php.ini, The server also suggested him to dynamically add SMTP settings …

Member Avatar for karthik_ppts
0
3K
Member Avatar for davy_yg

based on the code you posted, all you need to do is to include the file in your php page and perform a simple switch to get the result you are after. something like this: yourpage.php [CODE] include('get_browser.php'); $browser=getBrowser(); switch ($browser['name']) { case 'Google Chrome': echo "you are using chrome"; …

Member Avatar for emclondon
0
380
Member Avatar for emclondon

Hello guys, I am trying to learn working with Web services using PHP. I have found many methods to access and consume these services, but I've come to know Soap Client and cURL are the best way to do it. I decided to work on an API provided by a …

Member Avatar for diafol
0
286
Member Avatar for himanshu.1691

I rewrote the code for mysql, its almost same as oracle, maybe you could learn something from it? SQL data [CODE]CREATE TABLE IF NOT EXISTS `him_details` ( `NAME` varchar(25) DEFAULT NULL, `BRANCH` varchar(25) DEFAULT NULL, `SMOBILE` int(11) DEFAULT NULL, `ENO` int(11) DEFAULT NULL, `HOSTEL` varchar(25) DEFAULT NULL, `ROOM` varchar(25) DEFAULT …

Member Avatar for emclondon
0
177
Member Avatar for emclondon

Hello Guys, I'm trying to use a Thread Pool Executor in my application and I'm kinda stuck somewhere. My aim is to create a pool of fixed number of threads (say 10) waiting in the pool to be called for action (say to print hello); I'm still bad at java, …

Member Avatar for JamesCherrill
0
277
Member Avatar for befigard

I had a similar problem a year back and [URL="http://www.daniweb.com/software-development/java/threads/297225"]here[/URL] is the solved reply. the solution, basically create an imageicon and dump your image on to it. [CODE]JPanel mainpanel; JLabel imagelabel; ImageIcon myImage; String mypath; JPanel lightpanel; mypath = // put your path here. myImage = new ImageIcon(mypath); imagelabel = …

Member Avatar for emclondon
0
138
Member Avatar for emclondon

Hello guys, I am stuck again with a new problem. I need help with 3 things: 1. Timer 2. State Pattern 3. Disabling the button on JFrame lets go with the easiest one in the list, the Disabling of button one. I have an app with buttons, and I need …

Member Avatar for ~s.o.s~
0
615
Member Avatar for emclondon

hello guys and girls, im new to this forum.. so please be gentle :) Im developing this application to improve my ability to develop applications in c#.. so far i've fingured out that im not that good at it. I fetched out my old college coursework case study to work …

Member Avatar for mndn
0
188
Member Avatar for emclondon

hello admin/mods, I am facing a problem. I have PMed an admin and a mod about this earlier and the issue wasnt resolved as it bought a new issue. I am a masters student from London and I posted a question here on the forums when I was stuck doing …

Member Avatar for Dani
-1
280
Member Avatar for madhub2v

you can start off by reading this: [url]http://en.wikipedia.org/wiki/Software_development[/url] [url]http://en.wikipedia.org/wiki/Software_development_process[/url] [url]http://en.wikipedia.org/wiki/Software_development_methodology[/url] If you are into reading the book, then the best authors I can suggest are Pressman R. S., Somerville, I. and Cockburn, A.

Member Avatar for madhub2v
0
147
Member Avatar for emclondon

hello guys, I am trying to add an image to java panel. I have tried Paint, ImageIcon and every other sort of methods and failed. can someone explain me how do I add an image onto a panel? thanks for your time. cheers!

Member Avatar for emclondon
0
557
Member Avatar for john butler

Android has this thing called "Dalvik" which is its own version of Java Virtual Machine. Dalvik doesnt support most of the common J2SE and J2ME classes (like Frame, Panels, etc, etc.). So, an android developer would find it hard to develop applications for Other OS (linux/mac/win) becuase he/she would have …

Member Avatar for emclondon
0
126
Member Avatar for emclondon

Hello guys, im stuck working on a simulation program. I am working on a program which mimics a door's security key panel. In case if you have been wondering what a door's security key panel is.. its a keypad on the door which unlocks the door upon entering a proper …

Member Avatar for nick.crane
1
167