- Strength to Increase Rep
- +15
- Strength to Decrease Rep
- -3
- Upvotes Received
- 160
- Posts with Upvotes
- 148
- Upvoting Members
- 93
- Downvotes Received
- 32
- Posts with Downvotes
- 27
- Downvoting Members
- 24
Man that loves Jesus and explores science
- Interests
- Theology, Programming, Chit Chatting, Natural Exploration Adventures eta al
- PC Specs
- OS: Ubuntu 13.04 Raring Ringtail/Unity
Re: [url]http://www.whenpenguinsattack.com/2006/01/20/how-to-override-phpini/[/url] [url]http://www.phpfreaks.com/forums/index.php?topic=222826.0[/url] | |
Re: [QUOTE=akumakeenta;616219]Hi all, I'm kinda newbie at this. But I was just wondering where are you placing this code? On every page? or just on the main login page, etc? Thanks Mike[/QUOTE] Put it on separate page and include it on every page needed! | |
Re: [url]http://pyserial.wiki.sourceforge.net/pySerial[/url] | |
Re: from what I know Notepad++ Is editor not IDE. I think you need to Go for something like Netbeans. Their next version will support python (For now it supports to some extent). It does more than that, maaany languages. Just check their main package and nbpython plugin! | |
Re: [QUOTE=niranga;1317211]Hi All, I have a PHP code which do some changes to the POST variables it receives and redirect the page to some other page. This PHP code was initially designed to work without Ajax. So there wasn't any problem with the redirect function and it perfectly handles the POSt … | |
Re: [QUOTE=hielo;1605504]try: [CODE=PHP] $result_1= mysqli_query($link, "SELECT $criteria FROM table ORDER BY $crieria ASC") or die( mysqli_error($link) ); [/CODE][/QUOTE] Always let PHP display errors for you in development. Another way described in [URL="http://php.net/manual/en/mysqli.query.php"]PHP Manual[/URL] is: [CODE=PHP]/* Create table doesn't return a resultset */ if (mysqli_query($link, "CREATE TEMPORARY TABLE myCity LIKE City") === … | |
What are Similarities and differences, written in concise form? Thanks! | |
Re: Windows has won psychological war against Linux. | |
I cannot access my Toshiba External HDD. When I use chkdsk, It complains [B][COLOR="Red"] "Unable to determine volume version and state, chkdsk aborted"[/COLOR][/B]. I cannot think of any other way to restore it. I don't have access to buy recovery software so, freeware is preferrable. Thanks all | |
Re: Don't know on TkIntering, but if you're serious with your app, grab wxPython and MySQL-python. Make a client that will access remotely the mysql server, authenticate it and populate data/delete depending on whether they are admins or not After that exercise, you will be fresh for a rest :) | |
| |
Re: on windows use os.system("YOUR EJECT COMMAND HERE") | |
Re: [QUOTE=anirban1087;1459280]. Please Help me to develop the tree view. Thanks in advance.[/QUOTE] Without showing effort your thread will die young. explain more with some code, what you have done and where is the problem! | |
Re: start new thread seeing that this thread have white hair in it ;) | |
Re: While this does not solve your question, compressing the base64 string might reduce errors caused by timeout of big files transfer. Note that because base64 is string then your problem isn't JSON but how to reliably post big data! That being said, make sure that your server supports image data … | |
Re: Short Answer: NO. Long Answer: HTML is markup language and not programming language. Learn C/C++, Java, Python, C# et al to Program to USB. You need a desktop based programming language! | |
Re: If you feel confidence enough, write [URL="http://www-ai.ijs.si/eliza/eliza.html"]Eliza [/URL]program | |
Re: It is LEGAL to ask for starting point, or for PROBLEM in coding But it drives me bananas someone wants his/her homework done. Oh! Why did you go to college/School then?? :lol: | |
Re: Check out CP Article http://www.codeproject.com/Articles/687061/Multiple-Models-in-a-View-in-ASP-NET-MVC-MVC | |
I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change. I was looking at Default Register/Login that comes with MVC5 sample and found that its table have fields that are problematic to my app. Specifically, my users … | |
Re: Since you said nothing of what you have done so far nor did you tell us your level of expertise I will refer you to a tutorial http://www.w3schools.com/php/php_mysql_intro.asp | |
Re: I would suggest you look at SwiftMailer (my fav) or PHPMailer to send mails. For all practical purposes I don't use PHP mail() Here's a sample from [Documetation](http://swiftmailer.org/docs/sending.html) require_once 'lib/swift_required.php'; // Create the Transport $transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25) ->setUsername('your username') ->setPassword('your password') ; // Create the Mailer using your created … | |
Re: Basic example with for loop [CODE=python] #URL LIBRARY from urllib2 import * ur = urlopen("http://www.daniweb.com/forums/thread161312.html")#open url contents = ur.readlines()#readlines from url file fo = open("test.txt", "w")#open test.txt for line in contents: print "writing %s to a file" %(line,) fo.write(i)#write lines from url file to text file fo.close()#close text file [/CODE] | |
Re: what does join do? does it replace only commas or any other joining charcter? I'll dig py docs but forum sometimes is best place for answers | |
Re: [QUOTE=Flare;762667]print 'What is you name?' Raw_input()[/QUOTE] If you run it you will get error NameError: name 'Raw_input' is not defined That is because your version of raw_input() is Raw_input() | |
Re: no way in native php but you can use any script/executable in php as demonstrated above. Note, you must be careful in using methods as above especially if command can be called from outside the script. It might well be a bomb against your own app! | |
Re: [url]http://php.net/manual/en/function.mysql-query.php[/url] | |
Re: This is JavaScript question You have to tie events to selection change then send Ajax request to get list of States fo example, for that country! | |
Re: The Code below shows how to iterate Strings. With Efforts you should be able to get what you want God bless you! #include <string> #include <iostream> int main() { int i=0; std::string s = "UJehova uyaphile Yesu Mwema!"; for(i; i<s.length(); i++) { std::cout<<s[i]<<std::endl; } return 0; } | |
Re: What about DATABASE APP Example?? I really waiting for it!! |