- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
▒▒▓▓████████ ωєℓ¢σмє тσ мα ÏÑσƒιℓє████████▓▓▒▒ ιΘÔÅ∂IÏ€g...... Ã…bΘμt мε??? ιÔÅ∂IÏ€g...... ███ 10% ██████ 20% ██████████████…
40 Posted Topics
Re: The default Storage engine is Go for mysql prompt. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | images | | mysql | | test | +--------------------+ 4 rows in set (0.00 sec) mysql> use information_schema; Reading table information for completion of table and column names You … | |
Hi everyone, OS : Windows XP Professional (Srevice pack2). In my system , there are [COLOR="red"]three user accounts[/COLOR]. All the three user account [COLOR="red"]doesn't have passwords[/COLOR]. Like, one is limited account , one is guest account and other acccount, i don't knpw whether it is limited or administrator account. I … | |
How can I execute a PHP script using command line? example plzz .. | |
Is this the right process to rotate an image ? [code] <?php $original = imagecreatefrompng("myimage.png"); $yellow = imageColorAllocate($original,255,0,0); imagerotate($original,50,$yellow); header("content-type:image/png"); imagepng($rotated); imagedestroy($original); imagedestroy($rotated); ?> [/code] ![]() | |
small doubt my friends.... How can we submit a form without a submit button? ![]() | |
Re: Hi, i think , bullet means " unordered list". i think, <body> <ul type="disc"> <li> x </li> <li> Y </li> </ul> </body> it works. | |
![]() | |
Hi Freaks ... I need information regarding the webpage designing through PHP. I want the specs for designing a web page through PHP with a backend by which i can easily go through and it would be user friendly. | |
Hello All.... Is "Entropy PHP 5.2.9" different from "PHP 5.2.9" ? If yes, any installation changes required ? | |
Hello All ... Bit information from your side. Which PHP version will support on Mac OSX ?. I am using Mac OS 10.5.7. If so, what are requirements for designing an application ? Like (web server , database server , etc ...). With Best Regards, Bhanu. | |
Hello all... Anyone plz help for "TRIGGER CONCEPTS" & "STORED PROCEDURES". Materials wanted. | |
Hello Friends. Can we add an extra ethernet port to mac mini? | |
Hello All Is there any option for getting the deleted files from thrash? My files has been deleted few days back. I want to get it back. | |
Hello All. Is there any syntax for [COLOR="Red"]getting fields in a column in an alphabetical order[/COLOR] in mysql? See, for example... I have a two column with "NAME & NUM". NAME NUM BHANU 6 KIRAN 3 ADAPA 8 CHANDU 7 I need to get the names in alphabetical order. There … | |
Re: We can't go with dblink. But, with db connection through IP address, we can connect it. cxn = MySQLdb.connect(host='192.168.1.13',user='root',passwd='',db='navicat') its the process. | |
Hello All Can crystal reports be generate in Python ? Any suggestions plz?? | |
Hello All. I am having doubt that, is MS SQL works on Apple Mac Os X AND ".NET" too ?? | |
Hello All. See,for example... in this community site, we can view 10 to 15 threads in a single page and it goes to the second page. It means, a single page can set few threads. I need like that in python. Any suggestions plz. | |
Hello All. I am having doubt that, is MS SQL works on Apple Mac Os X AND ".NET" too ?? | |
Re: Hello Saritha.. I am having so many materials and ebooks on PHP & MYSQL and combined. If u need, feel free to mail me. <EMAIL SNIPPED>. Regards Bhanu | |
Re: cxn = MySQLdb.connect(host='192.168.1.13',user='root',passwd='',db='navicat') This is how we do in Python. | |
Re: Here is another way for backup. mysqldump -u [username] -p [password] [databasename] > [backupfile.sql] *[username] - this is your database username *[password] - this is the password for your database *[databasename] - the name of your database *[backupfile.sql] - the file to which the backup should be written. Try this, … | |
Hello All. I am working on Mac OS X. I installed Python 2.5.4 and Mysql 5.1.31. For the interface, i installed Mysql-Python 1.2.2. I did the right steps for the installation. But , getting some warnings. So, i checked in Python shell for the modules. Python 2.5.4 (r254:67917, Dec 23 … | |
Hello All. While making ".py" program to ".app", we need some steps to follow. [B]1. Create a setup.py file $ py2applet --make-setup MyApplication.py 2.Clean up your build directories $ rm -rf build dist 3.Development with alias mode $ python setup.py py2app -A Running your application 1.$ ./dist/MyApplication.app/Contents/MacOS/MyApplication 2.$ open -a … | |
Hello All. [COLOR="Red"]I created a login form and an application form in a single system. For that navigation, i imported application form's file name in login form. Then, we can easily execute it. If we enter "user id" and "password" in login form, then it navigates to application form.[/COLOR] This … | |
Re: In Python, every WHITE SPACE costa an error. So, check it once. If you click enter after every statement, you should follow it. In case of "if" and "else", you should follow "if" and then write "else" bottom to it. Thats it. | |
Hello All. I got a doubt. In general, for updating remote database, we use ip address for the remote system. Here, i would like to update two remote systems at a time. I wrote the code like the below one. Could anyone please give the correct advice and suggestions. [B]try: … | |
Hi all. I am newbie to python. I need a starting step to get through it. [COLOR="Red"]How to read lines from a file.[/COLOR] I need the solution. | |
Re: I mean, you are asking for adding some days to the current date. do like this [COLOR="Green"]e = date.today()+timedelta(days=10) print "the added date is %s", e[/COLOR] this is perfect solution. | |
Hello All. I created a login form, which has two fields named "USER ID " & "PASSWORD". Here, i took 8 character length for USER ID field. I would like to take "THE" as first three characters as constant in USER ID field. So, is it possible to do it? … | |
[B][/B]Hello to all. I am getting more hurdles while trying for the validation for the login from. I did a small project , but i am unable to set the validation for the main login form. I am using some simple logics. [COLOR="Green"][B]try: import os import MySQLdb,md5 import bz2 import … | |
hi every one. import os from reportlab.pdfgen import canvas from reportlab.lib.units import cm c = canvas.Canvas("/Users/venkatarampey/preview.pdf") c.drawString(8*cm, 28*cm,"HELLO PYTHON") c.showPage() c.save() FILE = open("/Users/venkatarampey/preview.pdf","r") The is the python script for previewing a pdf when run. Problem here is , i was able 2 generate a pdf on mentioned path but … | |
Hello all. For getting the values from text field, we use [COLOR="Red"]".get"[/COLOR] function. I would like to get all the contents from the [COLOR="Red"]text area[/COLOR]. What is the function to use. | |
Hello everyone I have created [COLOR="Red"]Tkinter application on Mac OS X.[/COLOR] [COLOR="Green"]I need to take printout for the output of that program from that application only.[/COLOR] Kindly please give me a valuable response. Regards BHANU | |
Hello friends. This is Bhanu from [COLOR="Red"][B]INDIA[/B][/COLOR]. I am working in a software company. Here, we are working on [COLOR="Red"]Macintosh Operating Systems[/COLOR]. It is very new to us. And we would like to work on [COLOR="Red"]Python Language for our Project with back end as MySql.[/COLOR] We referred so many tutorials … | |
Re: Hello friends. This is Bhanu from [COLOR="Red"]INDIA[/COLOR]. I am working in a software company. Here, we are working on [COLOR="Red"]Macintosh Operating Systems[/COLOR]. It is very new to us. And we would like to work on [COLOR="Red"]Python Language[/COLOR] for our Project with [COLOR="Red"]back end as MySql.[/COLOR] We referred so many tutorials … | |
Hi everyone, I am very new to use python scripting language. I am having a doubt that, [COLOR="Red"]how could we write the html programs on python for web applications ? [/COLOR] Please give quick response to my post. |
The End.