Jump to content

nackgr

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

nackgr's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hallo guys!! I have this script <?php $name = mysql_real_escape_string($_REQUEST['name']); $link = mysql_real_escape_string($_REQUEST['link']); $filename = mysql_real_escape_string($_REQUEST['filename']); if(empty($name) || empty($link) || empty($filename))exit; mysql_connect('localhost','root',''); @mysql_select_db('1') or die( "Unable to select database"); if (!mysql_query("INSERT INTO `1`.`files` (`name`,`link`,`filename`) VALUES ('$name','$link','$filename');")) { echo 'Fail!'; exit; } else { echo "Succesfuly added!"; } mysql_close(); ?> works fine when they send me link to mydomain.com/script.php?name=1&link=2&filename=3 and database updates fine , but the idea is That each name is owned by a group and every group has a different email adresse , how can automatically send email at the time someone send a link to my adress (mydomain.com/script.php?name=1&link=2&filename=3) with few words i want to notify the owner of the group (name) for the link and filename values Thats the story Thanks!!!
  2. Hallo guys!! I have this script <?php $name = mysql_real_escape_string($_REQUEST['name']); $link = mysql_real_escape_string($_REQUEST['link']); $filename = mysql_real_escape_string($_REQUEST['filename']); if(empty($name) || empty($link) || empty($filename))exit; mysql_connect('localhost','root',''); @mysql_select_db('1') or die( "Unable to select database"); if (!mysql_query("INSERT INTO `1`.`files` (`name`,`link`,`filename`) VALUES ('$name','$link','$filename');")) { echo 'Fail!'; exit; } else { echo "Succesfuly added!"; } mysql_close(); ?> works fine when they send me link to mydomain.com/script.php?name=1&link=2&filename=3 and database updates fine , but the idea is That each name is owned by a group and every group has a different email adresse , how can automatically send email at the time someone send a link to my adress (mydomain.com/script.php?name=1&link=2&filename=3) with few words i want to notify the owner of the group (name) for the link and filename values Thats the story Thanks!!!
  3. I think there is a problem with the connection of my domains to dovecot and postfix for smtp and imap srv
  4. True ! sorry I install webmin and virtualmin ! from mail virtualmin request (postfix and dovecot) i install them too but i got lost to the configuration , and i can't read or send mails only to log in to webmail of each domain If someone could help me with configuration of postfix and dovecot i would be gratefull
  5. Hallo I have a problem to configure my mail server at webmin , can anyone help me please , iam about to jump of the window! webmail dont work imap and smtp errors
  6. the anum is the called number and we get it from a external xml gateway that hold all details A friend gave me this <script> var a = '31sd232fsd12ddf143'; var b = a.substring(0, (a.length-4)) + '****'; alert(b); </script> but i am not so relative with js
  7. Hallo We have a table that saws calling numbers report The <td> <td nowrap >{anum}</td> saws the number that our clients number has dial how can i make this td everytime hide the last 4 digits Thanks!! <calls_list> <table class="callsListTable" cellpadding="10"> <tr class="title"> <td width="40"></td> <td width="20%">{word:date}</td> <td width="20%">{word:country}</td> <td width="20%">{word:to_number}</td> <td width="20%">{word:from_number}</td> <td width="20%">{word:cost}</td> <td width="20%">{word:time}</td> <td width="20%">{word:price}</td> </tr> <call> <tr class="line{class}"> <td><img src="/templates/g/images/{cdir}.gif"></td> <td>{calldate}</td> <td>{rdest}</td> <td nowrap>{bnum}</td> <td nowrap >{anum}</td> <td>{mcost}</td> <td>{billsec}</td> <td>{ccost} {curr}</td> </tr></call> <tr> <td colspan="5"></td> <td colspan="3" align="right"><b>{word:total_calls_cost}: {total_calls_cost} Eur</b></td> </tr> </table></calls_list>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.