| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
Comments:
<0> /mt <1> and in place of my name type username <0> dang. <0> /me kicks username <0> Just don't put a space in front of /me <1> ok <1> ok <1> kick me <1> honestely <1> I still don't get <1> you <2> hey. <3> What I would give to be able to set +o right now... <0> :) Amen to that.
<2> can someone tell me... is there an easy way to show the date, and add seven days to it? <2> in php? <1> Nexus <1> how? <1> Nexus is there space or not <4> NO <3> tuxtheslacker: Read the man page on strtotime <0> No space <4> Damn. <4> He said it like 50000998987 times. <0> +1 <1> ok type once again the command <4> /me kicks sanu790 <2> FlamingCows, strtotime? <1> me>>>>Nexus <5> sanu790 enough already, go try efnet or something <0> Good heck. <1> Jymmm <1> dude <1> what are you doing with me? <0> Wow. That was a quick answer to prayer. :) <3> tuxtheslacker: Read the manual page on it, it will reveal all. <0> All I had to do was think *sanu790 be gone* and *poof* he was kicked! :) <4> He came back. :( <3> Jymmm: This channel needs more active ops at certain times. :\ <2> FlamingCows, thanks. <6> FlamingCows he was more of a fly than anything else. <0> So if I have a textfield, is it possible to p*** the content of it to another page and keep the formatting? <7> how can i show a mysql table after i do SELECT * from $table ? <8> http://evolt.org/these-things-i-know-php-tips#comment-63112 ... lol <8> I want to read a tips section about optimization from that guy! <3> Jymmmm: Yes, but I meant in general; I've seen several people who should have been kicked and weren't due to lack of active ops. <7> how can i show a mysql table after i do SELECT * from $table ? <3> Meh, whatever. <8> I'm concerned about how to efficiently handle includes/requiries and general program flow <8> "Arguing that tabs beat spaces because they cost fewer bytes is just silly, unless you're serving pages from hardware so old it'd burst into flame just thinking about running PHP, plugged into pipes narrower than my old granny's 14.4 dialup." <0> He's got a way with words, that's for sure. <3> Yes, but tabs beat spaces because you can customize the tabstop. <0> Spaces are better... Because stuff... and hud. <8> FlamingCows, hence, that'd be a better argument <0> Is there a way to use a session (without cookies) and POST from a form? <6> FlamingCows: I understand, but not much I can do about that. <9> meh, i need to figure out how to convert emacs from using 2 spaces to using a tab, and interpreting it as 2 spaces <0> So for action="label.php" can I just do label.php?<? echo (SID);?> <10> Oooh sudden inspirations in libssh2 development <8> Nexus, session_start(); $_SESSION['variable'] = "value"; .... next page .... session_start(); $value = $_SESSION['variable']; <9> Pollita: oh? <10> stupid cat <0> Brice, Doesn't that method use cookies though? <3> Pollita: The stupid cat has affected the libssh2 development? <3> Or, inspired, rather? <11> hi <8> Nexus, sure.. sess id gets p***ed @ get <8> Nexus, how about : session_start('NEXUS'); instead <0> Now I'm totally lost. <9> session_start doesnt take any params
<8> Nexus, you create your own session name <3> 'bool session_start(void)' <8> err.. session_name('NEXUS'); to create your own named session (doesn't rely on cookies) <9> uhh <11> i have a hosting package(10 domain), only i can define e-mail p***words for customers(end user) in my PLESK, how can a customer can change his p***word without plesk? <9> ..why would that ever be usefull? <3> omerix: We don't do plesk support. <3> itrebal: In a custom session handler. <3> !tell omerix about g10 <8> so, session_name('NEXUS'); session_start(); $_SESSION['variable'] = "value"; .... next page .... session_name('NEXUS'); session_start(); $value = $_SESSION['variable']; <9> FlamingCows: gotchya <3> Heh. <9> FlamingCows: what do you think? <3> PHP's is fine for most things, although sometimes I'd rather use a custom handler and a DBMS. <12> ok, this remodelling project was supposed to be easy! <9> ah <0> Brice, Interesting... However would that work if multiple people are using the site at once? Wouldn't they overwrite each others variables? <8> Nexus, though I'm not an expert by any means? perhaps there's other ways to p*** variables between pages ( W/O $_GET, writing to files, Sessions ) ? <8> Nexus, it'd overwrite <8> Nexus, you could create the name based off of IP or something <0> Brice, No, I appreciate your ideas. It's kind of abstract for me (I'm no programmer), so the different ideas are good. <8> NeoTeKK, what's the big deal w/ using just session_start() ? that creates a unique session_id that's p***ed by the browser <4> Does anyone know of a good host, that has good bandwidth, space, and a shell? <13> yes <13> localhost <9> Tainted-Wolf: i used dreamhost, but it was awfull and wouldn't recommend it to anyone <3> Yes, dreamhost is bad. <14> i use 1and1.com but i don't know if they offer shell <11> <3> : i did not ask "how can i use plesk", i ask "without plesk and others, how can i change p***word with php, is there a script about this <0> Tainted-Wolf, What do you want to do with it? <8> Nexus, if there's a start page.. you could make a seed there.. like MD5(time()); <4> Host 5 websites, and run them. <3> omerix: Ah sorry, your comment set off my auto-guidline trigger. <3> Dang false positives. <3> Mental trigger, for the dense. <3> Anyway. <9> FlamingCows: i've got that too <4> Tokeiito: Are you joking? Or is there a host called localhost? <8> then make that the session name... ie. { $seed = MD5(time()); session_name($seed); session_start(); $_SESSION['var'] = "value"; <a href="nextpage.php?seed="<?=$seed ?>">next page</a> ... then next page .. $seed = $_GET['seed']; session_name($seed); session_start(); ... echo 'value of var'.$_SESSION['var']; <13> sry, i'm joking <3> omerix: The short answer is it depends on your mailserver. <15> um... "woof"? <3> Brice: PHP already generates a [pseudo]random name for you, why generate your own? <3> Stormchaser: Woof indeed. <8> FlamingCows, I have no idea ;) <11> <3> : thanks <8> FlamingCows, like I said.. I thought a plain session_start(); is adaquate <4> So does anyone know of a host the has these features? <9> Tainted-Wolf: yours <16> Tainted-Wolf: 1and1 ? <17> Tainted-Wolf: google <4> Super-Fly: 1and1 doesnt have shell support. <9> Tainted-Wolf: Thow much do you want to do? <16> Tainted-Wolf: yea it does <9> Tainted-Wolf: it does ineed, you just have to pay $99 a month for it :) <4> Lol <4> Well, I want to run 5 of my websites with perl, php, shell access, good bandwith... <4> I just want a good host. <4> Mine ****s. <17> !+enter <18> Don't use the enter key as puncuation. Think in complete thoughts, then type. <9> it might be worth it to you to get a semi-dedicated, or dedicated, if they are popular <4> itrebal: Thats what i was thinking. <19> I enable ONE fricken thing on PHP5, LDAP, and I get one annoying error, AFTER it's already compiled: configure: error: invalid package name: readline <20> how would i do this in php.. if ($_POST['var'] exists) <20> or if ($_POST['var'] is defined) <9> php.net/empty and php.net/isset <9> php.net/defined <20> and isset does not work <20> ok thanks <9> but defined is only for constants
Return to
#php or Go to some related
logs:
#css F6D3010 linux #suse #python what does sdfgsdfg mean? dri on display :1 Port 696 muzkrat #fluxbox glxgears segmentation-fault breezy
|
|