Jump to content

Kristian_C

Members
  • Posts

    246
  • Joined

  • Last visited

About Kristian_C

  • Birthday 07/22/1990

Previous Fields

  • Languages
    HTML, CSS, PHP, MySQL.

Contact Methods

  • MSN
    djkdra@djkdra.com
  • Website URL
    http://www.nonenow.none
  • ICQ
    0

Profile Information

  • Location
    Norway

Kristian_C's Achievements

Member

Member (2/7)

0

Reputation

  1. hey, no it is not possible to prevent that from happening with codes, its the browser that automaticly does it.may be possible if you use it as background in a div/table.-Kristian_c
  2. If you have a login system you chould use :if($_POST[login]){$username=$_POST[username];$password=$_POST[password];then session_register(username);include :$username=$_SESSION[username];$user=mysql_fetch_object(mysql_query("SELECT * FROM users WHERE username='$username'"));and just use if($user->level =="1"){or something like that..have been a noncoder for a while now but i think it will work...offcourse you can register session level like the same way as username but then you must run a fetch on that first.hope it helps.-Kristian_C
  3. Kristian_C

    BBCodes

    Dont know if this helps or if this is what you want but : function rep2($tekst) {$tekst = str_replace('<','<',$tekst);$tekst = str_replace('>','>',$tekst);$tekst = str_replace('"','\"',$tekst);$tekst = str_replace(''',"'",$tekst);$tekst = str_replace('amp;','&',$tekst);return $tekst;} Just copyed now so just take the function content and insert into the code i gave you if you still use it, if not i cant help you. ->Kristian_C.
  4. Kristian_C

    Just Curious

    Not quite sure what you are talking about but : $fetch=mysql_fetch_object(mysql_query("SELECT * FROM table WHERE something='something'"));if($fetch->something!=something){echo"Something";} Not quite sure it was the fetch-> you where after but well here it is ->Kristian_C.
  5. I dont see you much, but i can see clearly that the spam is beeing deleted, and users that has nothing to do here is beeing banned/deleted. So i must say that you are great mods chould be more active but as allways every one has a private life to so keep on doing the job and have fun ...->Kristian_C.
  6. Found it, so if someone else gets this problem here is the solution :http://www.adobe.com/cfusion/knowledgebase...cfm?id=80821e11->Kristian_C.
  7. Okay, i found a few links, but every one has the wrong verson... it keeps saying 2 or less,.. or 7 ++the trail versons of flash ++ needs 4, where the H*** can i get it? :s->Kristian_C.
  8. Hey, i thought i whould try to learn abit with flash now, so i downloaded the flash professional 8 from adobe.com, but i dont have the right verson of the ISScript... I tried to find it a while ago but i never found the right verson...Do anyone know where i chould find it?, Or if someone can send it to me or upload on their site so i chould download i whould be verry verry thankfull for it ->Kristian_C.
  9. Not quite sure i know what u wanted but if you just wanted the "fill" to be as big as the p tags : <table border=1> <colgroup> <col width=100> <col width=200> <tr> <td colspan=2> HEADER </td> </tr> <tr> <td style="height: 30px"> Sidebar </td> <td rowspan=3> <p>Paragraph</p> <p>Paragraph</p> <p>Paragraph</p> <p>Paragraph</p> <p>Paragraph</p> <p>Paragraph</p> </td> </tr> <tr> <td height="155" valign="top"> Fill </td> </tr> <tr> <td style="height: 30px"> Footer </td> </tr> </table> ------think i read abit wird... you want it to be automaticly resized?, well i tried a few times but sorry, dident work...->Kristian_C.
  10. Kristian_C

    BBCodes

    That was a verry hard to understand code but nice ->Kristian_C.
  11. Kristian_C

    BBCodes

    Just like this : [url]http://w3schools.com[*url]w3schools[/url] ->Kristian_C.
  12. I just think you need a good program, as Dreamweaver is one of the best i know, start makeing different styles with HTML/CSS, try addeing some javascript to it then start with PHP/MySQL, Perl aint so verry important... w3schools if absolutly the best place to start with web design and programming.->Kristian_C.
  13. Hey, ive been trying to save an image ive made as a template... i managed to save so i got a few images to make the template but when i try to put them together its just getting messy, and i know that it is possible to save as template and get the html to, but how? i use CS2 with ImageReady...->Kristian_C.
  14. Kristian_C

    BBCodes

    What you should write is :[*url]adress[With star*url]Text[/url*]->Kristian_C.
  15. Kristian_C

    BBCodes

    Try this :$tekst = str_replace("[url]", "<a target='newframe' href=", $tekst);$tekst = str_replace("[*url]", ">", $tekst);$tekst = str_replace("[/url]", "</a>", $tekst); ->Kristian_C.
×
×
  • Create New...