A Flash Developer Resource Site

Search:

Type: Posts; User: ZorTiger

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    17
    Views
    810

    setting cookies are done with: setcookie ...

    setting cookies are done with: setcookie

    http://us2.php.net/manual/en/function.setcookie.php

    like:

    setcookie("chanels", $mychanels,time()+3600); // sets a cookie chanels to expire an a hour....
  2. Replies
    17
    Views
    810

    also i noticed this: echo "Error; mod-$value...

    also i noticed this:

    echo "Error; mod-$value Missing" ... should be have a ;
    echo "Error; mod-$value Missing";

    im not perfect :P
  3. Replies
    6
    Views
    728

    :P it should be simple enough. session_id() ...

    :P it should be simple enough.

    session_id()

    will return the session ID :)

    i think it will also return false on no session
  4. Replies
    17
    Views
    810

    Always, same basic script i did that i posted...

    Always, same basic script i did that i posted could be easily modified
  5. Thread: Proble

    by ZorTiger
    Replies
    2
    Views
    613

    if 'a' is on the _root you mightw ant to try...

    if 'a' is on the _root

    you mightw ant to try
    _root.removeMovieClip("a");
  6. Replies
    6
    Views
    728

    Im at work, there is nothing better to do :) ...

    Im at work, there is nothing better to do :)

    The easyest way to detect another login with the same user/pass would be to compare there current session ID to the one in the database that you set at...
  7. Replies
    4
    Views
    842

    actually, i came up with it dose allow select...

    actually, i came up with it dose allow select distinct

    if you search on mysql' site for SELECT Syntax

    you will come up with this:
    http://dev.mysql.com/doc/mysql/en/SELECT.html

    SELECT
    ...
  8. Replies
    6
    Views
    728

    With php, you pretty much got the idea there. ...

    With php, you pretty much got the idea there.

    There are always fancyer aways, not nessarly better though.

    If you track the userid with the sessionid, and last pageview.. you have a lot of...
  9. Replies
    4
    Views
    842

    when there are more then 1 director, it is above...

    when there are more then 1 director, it is above my SQL ablitys, more over, i think its not a limit to mySQL, its a limit to PHP

    so your best is to do 2 actual querys..

    Iv crafted SQL thats...
  10. Replies
    4
    Views
    842

    have you tryed something like: SELECT DISTINCT...

    have you tryed something like:

    SELECT DISTINCT
    tblCompanies.intCompanyID, tblCompanies.vchCompanyName,
    tblDirectors.intDirectorID, tblDirectors.vchDirectorName,
    FROM tblCompanies LEFT JOIN...
  11. settinga predefined width on the table/td .....

    settinga predefined width on the table/td .. should make it autowrap.
  12. Replies
    17
    Views
    810

    Get This will help you for your adding of...

    Get


    This will help you for your adding of channels.. and junk:


    $dir = "./modules/";
    $results = array();
    if ($handle = @opendir($dir)) {
    while (false !== ($file = readdir($handle))) {
  13. Replies
    17
    Views
    810

    and finally: This should work.. I think it...

    and finally:

    This should work.. I think it will.. it should work, it shouldnt be that far off it it is.

    This will work as long as thay are in groups of 3's .. other groups will also work but it...
  14. Replies
    17
    Views
    810

    templates/default_mod.htm NORMAL HTML: ...

    templates/default_mod.htm
    NORMAL HTML:


    <table width='200'>
    <tr>
    <td align='center'><font size='4'>{$title}</td>
    </tr>
    {section name=i loop=$links}
    <tr>
  15. Replies
    17
    Views
    810

    Modual Sample .. named .. sample:...

    Modual Sample .. named .. sample:
    modules/sample.php


    <?
    function sample_show(){
    // We like to make these compicated because ... compicated is neat!
    global $modules;
    $smarty = new Smarty; ...
  16. Replies
    17
    Views
    810

    index.php // This users smarty template...

    index.php


    // This users smarty template engine http://smarty.php.net
    // This code is sniblets from my hock driven menu system.

    require 'libs/Smarty.class.php';
    $smarty = new Smarty;...
  17. Replies
    1
    Views
    589

    The old timed refresh in html:

    The old timed refresh in html:

    <meta http-equiv="Refresh" content="10; URL=http://address">

    PHP header:

    header("Location: http://address");
  18. Replies
    17
    Views
    810

    ..errr, iv never seen it put so compicated. ...

    ..errr, iv never seen it put so compicated.

    traditionally, this custom portal would be done with a database.


    Im not a coldfussion person. It seems to complated, to controlled and closed for...
  19. Replies
    3
    Views
    767

    a lot of this depends on the type of server. ...

    a lot of this depends on the type of server.

    If you where to so have a dedicated Unix server, a lot of this is easy.


    - how can i get scripts to automate the account setup on my WHM?
    ...
  20. Im 100% sure this is impossaable with just a...

    Im 100% sure this is impossaable with just a normal SWF file.

    But with something like http://www.multidmedia.com/ software it is possable.

    Its one of the things id buy if i had 250 dollars to...
  21. Thread: variables

    by ZorTiger
    Replies
    6
    Views
    846

    I dont think good and free php can be used in the...

    I dont think good and free php can be used in the same setance.

    Most of them that are good and free and also offer php last only a few months, or elite/select only. Meaning you have to fill out an...
  22. Thread: SQL wrong??

    by ZorTiger
    Replies
    3
    Views
    842

    because its a problem i have all the time my...

    because its a problem i have all the time my self.

    I think its varryyy common.
  23. Thread: SQL wrong??

    by ZorTiger
    Replies
    3
    Views
    842

    try: mysql_query("INSERT INTO news (date,...

    try:

    mysql_query("INSERT INTO news (date, body, user) VALUES ('$date','$body','$user')");
  24. Replies
    6
    Views
    1,895

    You mean something like this:...

    You mean something like this:
    http://www.avataur.com/center.htm





    <body>
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
  25. Replies
    13
    Views
    2,580

    You might want to look at 'flat file' databases,...

    You might want to look at 'flat file' databases, thay would use something like a txt document.

    You could use one for something like this, as it shouldnt be a ton of data - it just wont be the...
Results 1 to 25 of 64
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center