Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BalaHoho

Pages: [1]
1
Scripting Languages / Re: [Python]FuzzyWeb
« on: June 24, 2013, 03:28:36 pm »
I think here you can change

Code: (Python) [Select]
"""
        res=con.getresponse()
        if str(res.status)=="200":
"""
->
"""

       res=con.getresponse()
       if res.status==200:
"""
I think U Know :)

2
Web Oriented Coding / Re: [PHP] Upload file
« on: June 24, 2013, 03:15:29 pm »
id!=name :) But PHP for the name

Pages: [1]