Search results

  1. B

    JS - make nodeValue the id - but how...

    hello. i have a menu set up like this: <div id="menu"> <a class="active">abc</a> <a class="passive">cde</a> </div> this is part of a typo3-template. whatever, what i need to do for design reasons is to replace the links (the 'abc', 'cde') with whitespace and set individual id´s to...
  2. B

    joomla menu problem

    hi, i am building a site with joomla (1.5.3) and the following error occurs: i made a menu structure like this: -home -section 1 ---category1 ---category2 -section 2 ---category1 ---category2 ...but joomla keeps declaring all the items as "mainlevel"! can someone tell me how i can get the...
  3. B

    unsuspended but everything messed up

    hi x10-team. my account is unsuspended now, thank you. as i was told i added my own domain in the account management panel, with the effects that - the new c-panel-url (www.mydomain.com:2082) is not working - the redirect for my domain finds a 404-page on x10 - there´s no ftp-access any more...
  4. B

    just how smart can an iframe get?

    hi everybody, i am working on an idea on "intelligent" advertising right now, and i just came across the following: a document (let´s call it "ad.php") is placed on different websites via iframe, in the sense that www.thisisjust.com/an/example.html is showing ad.php in an iframe. these two are...
  5. B

    [PHP] sorting 2-dimensional array by timestamp-key

    hi, back again with some rss-newsbox-trouble... I wrote a script that collects items from different rss-newsfeeds into one array. this array is supposed to be sorted by date in order to have the newest rss-item on top. what I did is: //get my news-items foreach ($rss->items as $item)...
  6. B

    [PHP] counting values in mysql_fetch_array()?

    hi, i have a question about a simple php-sql routine: I select some content items from a database and display their data, this works fine. $contentResult = @ mysql_query($contentQuery, $connection); while ($contentitems = @ mysql_fetch_array($contentResult)) { print $contentitems['ID']; }...
  7. B

    what happened to my webspace?

    hi. i applied for some x10 free webspace a couple of days ago (9 january 08), and i received a confirmation email asking me to klick on this link: http://x10hosting.com/confirmAccount/638e236f61. well, i did, and that was it - can i still hope to someday get some webspace at x10? has something...
  8. B

    PHP mail() not sending

    hi, I wrote a script that is supposed to send data from a html-form to an email-recipient. it works fine on php5, but on a win-server with php4 it doesn´t. here´s the script: $mailto = "mail@domain.com"; $from_subject = "blabla"; // the $_POST is coming from the form $headers = "From: " ...
  9. B

    PHP - extracting data from mail body

    hi. I am looking for a smooth solution for the following problem: I wrote a php-script that is collecting emails from a mail account, reads the content of the email body (or, as it is, is supposed to read the content), extracts some of the given data and sends this data to a SOAP webservice...
Top