| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Comments:
<0> well i'll just put \n for now .. thanks <1> smelly Rick! <2> so \r, \n, or \r\n is valid in HTML <3> I want to rewrite my frame site with div's ! any good known example ? <2> hello mazzanet <0> good! no hacks needed then <2> Akuma_: ^^ <1> Rick: haven't seen you around for yonks <2> mazzanet: I talk occasionally :P <2> usually only here for a few minutes though <4> ace_me: i think that's more an html thing than a php thing? <2> such as to yell at some random person <2> heh heh heh <2> how goes it mazzanet? <3> but I'll use includes and I am wondering how I'll handle the changes <2> ace_me: it's still an HTMl thing
<3> so it will most php thing <3> are you using frames rick? <2> umm... not since '97 or so <4> frames are so 20th century :) <3> hmm so div's or tables ? <2> either or <2> I don't do much html work anymore <2> :P <1> Rick: meh the usual, killing people <3> anyway I have this example rick http://www.talente.ro/css/index.php?t=0 but I am wonder if a bot will index tree php which is included in the lef div how will I avoid to surfers that page or should I ? <2> robots.txt control? <3> hmm of course but I will still have to force programs to be accessed by the www.talente.ro only as referer ! ? <2> if a bot wants to view your page you have no way to stop it <3> so I am thinking if it worth to change frame style to div style ! I could write some frame checking also... <2> you can only stop legitimate bots <3> in robots.txt <3> but if I will check referer seems that I can stop some access to certain php <2> mazzanet: who're your victims? :P <1> Rick: i lost count :) <2> hehe <5> unless you do the whole "number verification" thing on your entrance page <4> ace_me: why put stuff on the web if you don't want things to see it.. <2> I think we're misunderstanding his intentions <4> hmm, trying to do a redirect with this: <4> header("http://" . $_SERVER['HTTP_HOST'] . "/custom/$lens/"); <6> header('Location: http://... <4> but it writes out a header like http: //www.lenshoods.co.uk/custom/1148211130/ <4> ah <4> cheers :o) <4> silly me <5> and take out the space <6> Rewt`: meh, i dont like it but hwatever <4> actually, the real question was how did the space get there? <7> Hey, this is my code: http://nopaste.php-q.net/213642 And i get the error: Column count doesn't match value count at row 1 Why? <8> lemme guess without looking at the code.. maybe.. the column count doesn't match? <7> And what exactly does column count mean <8> the number of.. columns? <7> okey <8> select 1; <= 1 column <8> select 1,2,3; <= 3 columns <7> I know, I forgot one:P me goes dumb and the dumb one says Thanks <7> Why does echo "<a href'admin.php'>Tillbaka till startsidan</a>"; just give me the regular text TIllbaka till startsidan <7> oh found it <7> nvm <9> <a href="...">? <10> hello <7> i know <10> i have a time: 13:24, and i wanna add or remove let say 30 minutes <10> how can i do that? <10> help <11> gurde_com: something like: mktime(13, 24+30, date('d'), date('m'), date('Y')); <11> except I missed the seconds paramater <10> aha <10> and i need the H:i:s format <10> :| <11> mktime() makes the time stamp, you can then format it if it were a date <11> something like: date('H:i:s', mktime(13, 24+30, 0, date('m'), date('d'), date('Y')); <10> aha <10> let me try :D <7> gurde_com: mktime(0, 0, 0, date("m"), date("d")+1, date("y"));
<10> heh, that works <7> but you gotta change the values of diffrent stuff <10> thnx rofo <10> :) <11> You're welcome ^_^ <10> i needed a time from the server to work with it in javascript :) <11> For nothing critical I hope <10> no <10> www.eudora.ro <10> under the menu <10> to calculate the local time <10> is damn hot in here <12> what's exclusive OR in PHP <13> can someone tell me what is going on in this error message that appears every now and then? <13> "Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively. in Unknown on line 0" <10> bye :) i'll be back :P <14> http://pastebin.com/729568 - part of my code, CURL dosent save the cookies in cookie.txt, i have opened the file (its now on chmod 666) and its blank.. if anyone can help..thanks <15> I just downloaded 4.4.3 and enabled the gd2 extension. It loads fine but it doesnt show in phpinfo() and the functions dont exist. This is on windows. What's going on? <13> dangermouse: you use windows. <15> cached: Yes I do. :) <13> you know thats suicide, right? <13> but anyways <13> did you uncomment gd2 from the config file <15> cached: No ! This is a production machine of course, windows xp. Please shut up :) <13> did you uncomment gd2 from the config file? <15> Yes <13> restart apache? <13> or whatever server <15> I know how to load an extension <13> hmm <16> no you don't! <15> hey mazzanet <13> oh snap <17> hey all. <17> has anyone around here experimented with MediaWiki at all? <16> !tell DomP about g10 <17> I know mazza, I'm trying to write (not install) a hack for MediaWiki and was looking for some help in finding a certain function <16> #mediawiki maybe... <18> /dns 60.240.81.52 <6> oh yea? <19> hoi <19> hi <19> my value for openbasedir for 1 folder is: php_admin_value open_basedir "/var/www/vhosts/mydomain.com/httpdocs" <19> how can i add a second folder please? <20> Whats the best way to remove all letters from a string? preg_replace()? <21> NickJane: yeah <4> what's the best way to set up an area of web site such that people can only access it after making a payment via paypal? <20> arpad: how would I enter them into the preg_replace()? Put them all in an array first or??? <21> NickJane: do you mean a-zA-Z? <19> would that work: php_admin_value open_basedir "/var/www/vhosts/mydomain1.com/httpdocs/; /var/www/vhosts/mydomain2.com/httpdocs/" <20> arpad: yes <21> NickJane: then use a pattern like '/[^a-z]+/i' - which matches anything but [a-zA-Z] <22> Jibbler|TV you cant really, unless you have a database backend or other persistent memory store that remembers users and their payments... <4> well, that's the issue - how do you interface with paypal so you know someone's paid already or not <18> jibbler, using the postback feature of paypal <4> aha <18> its limited to one email address per account though, which ****s <18> i have like 15 sites i'd like to use it on but you can only setup one <20> arpad: I want to remove the letters, not keep them. <21> NickJane: so guess what the replacement should be <4> that's a bit annoying <22> Jibbler|TV paypal have some very simple APIs you can use but you have you sign up and i think pay a subscription fee to use them <4> not sure i can be bothered with that :) <23> hello <23> i created a picture with php <23> but it looks like many pixels <24> How i make auto-resize on php ?? index.php <20> arpad: I dont know anything about the array's or what the /[^]+/i is for <20> I know the basics of arrays, thats it... Lol <20> I was looking up preg_replace() and knew it could do what I wanted <25> Hi, using apache + php 5.1.4 and php.ini with display_errors = Off, I can see mysql errors via web, any idea how to quit it?
Return to
#php or Go to some related
logs:
#suse #perl etch 2005fpw icecream shoutcast ubuntu #perl install xf86 ubuntu #php #perl FreeTypeRasteriseGlyph error VMWare tools+Debian Sarge
|
|