Jump to content

visitor

Members
  • Posts

    73
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

visitor's Achievements

Member

Member (2/5)

0

Reputation

  1. Thank you for this info Mr. Barand. If there is no RSS stream available, what other options are there? Do you know...?
  2. Hi I would like to get automatic updates in db (i.e. prices and dates) of certain funds. This data ain't publicly available. So, instead of getting this data on a piece of paper by the provider and applying it manually into the db, I want to know if there is a better way on how to do this. Is it possible to get the data by RSS Stream directly (automatically) into certain fields of the database? Thank you visitor
  3. So, I finally thought I have found some code to expand the textarea dynamically. But no... anyway, here's the javascript code to this textarea. If someone has got a code that works, please let me know. Thanks <tr> <td class="fieldset"> <div class="tbl_lbl">FUND STRATEGY</div> <div class="tbl_input"> <textarea id="fund_strategy" onkeyup="new do_resize(this);" cols="43" rows="1" name="fund_strategy"> <?php echo $arrayFund[0]['fund_strategy']?></textarea> </textarea> </div> </td> </tr> function do_resize(textbox) { var maxrows=5; var txt=textbox.value; var cols=textbox.cols; var arraytxt=textbox.split('\n'); var rows=arraytxt.length; for (i=0;imaxrows) textbox.rows=maxrows; else textbox.rows=rows; }
  4. Thanks for the link... I am getting there slowly
  5. Yes, I know... I am working on it, though. But still, even when I try to increase the textarea, it stays the same. I tried this <textarea width="300px" name="fund_strategy" id="fund_strategy"> and how can I get the text from database inside this textarea field?
  6. Hi Data is entered directly into the database (phpMyAdmin). When this data then is then looked up on the website, it shows only a part of the first line as the table is too small. The textarea must be dynamic as texts vary in size. Does anyone have a good idea how this problem can be solved best? Dok2.doc <tr> <td input type="textarea" class="fieldset"><div class="tbl_lbl">FUND STRATEGY</div> <div class="tbl_input"> <input size="57" name="fund_strategy" id="fund_strategy" value="<?php echo $arrayFund[0]['fund_strategy']?></textarea> </div></td> </tr> Thank you
  7. visitor

    Phpmyadmin

    I made it...! It works, I can't believe it! It was a struggle but the result is great! Thank you for your suggestions
  8. visitor

    Phpmyadmin

    This is an impossible task. It can't be done! I tried all that you suggested (ie. <br />, "\r\n", textarea) but it still doesn't work. Thanks for your help, anyway
  9. visitor

    Phpmyadmin

    How can I increase the size (height) of the 'fund strategy' field? Maybe that way this issue can be solved. Please view the attachment... about field size.doc
  10. visitor

    Phpmyadmin

    Because it can be done both ways... - directly in the website - in the table of the database
  11. visitor

    Phpmyadmin

    So, to make it work as you suggested before, I have to do this, right? LONG-TERM CAPITAL APPRECIATION COMBINED WITH CAPITAL<br> PRESERVATION."\r\n" AIM AT RETURNS WITH LOWER VOLATILITY THAN EQUITIES AND<br> A LOW CORRELATION WITH EQUITY AND BOND MARKETS."\r\n" TO MANAGE THE FUND SO THAT IT IS ABLE TO ADAPT TO CHAN-<br> GING MARKET CONDITIONS AT ALL TIMES AND ESPECIALLY TO<br> PRESERVE LIQUIDITY."\r\n"
  12. visitor

    Phpmyadmin

    Hi Jessica No, even with <br> and/or "\r\n" it shows only the one line below... LONG-TERM CAPITAL APPRECIATION COMBINED WITH CAPITAL* *it is cut after 'capital'. The word 'preservation' is not shown as there is no space left. ...but thanks for your suggestion. I appreciate it. I would need the text to show up like this... LONG-TERM CAPITAL APPRECIATION COMBINED WITH CAPITAL<br> PRESERVATION. AIM AT RETURNS WITH LOWER VOLATILITY THAN EQUITIES AND<br> A LOW CORRELATION WITH EQUITY AND BOND MARKETS. TO MANAGE THE FUND SO THAT IT IS ABLE TO ADAPT TO CHAN-<br> GING MARKET CONDITIONS AT ALL TIMES AND ESPECIALLY TO<br> PRESERVE LIQUIDITY. TO IDENTIFY OPPORTUNITIES FOR BOTH LONG AND SHORT<br> POSITIONS WITH A VIEW TO GENERATING ALPHA FROM BOTH. TO KEEP A LOW NET EXPOSURE IN ORDER TO REDUCE EXPO-<br> SURE TO MARKET MOVEMENTS.
  13. visitor

    Phpmyadmin

    No, the information is entered manually directly into the database table.
  14. visitor

    Phpmyadmin

    Hi I hope someone can help me... how can I get a line-break directly in the phpMyAdmin database in a text field. Please see the example below... LONG-TERM CAPITAL APPRECIATION COMBINED WITH CAPITAL<br />PRESERVATION.<br /><br /> AIM AT RETURNS WITH LOWER VOLATILITY THAN EQUITIES AND<br /> A LOW CORRELATION WITH EQUITY AND BOND MARKETS. I know it doesn't work with <br />. This is just to show you where I would like to have them placed directly in the text field of the table. <tr> <td class="fieldset"><div class="tbl_lbl">FUND STRATEGY</div> <div class="tbl_input"> <input size="57" name="fund_strategy" id="fund_strategy" value="<?php echo $arrayFund[0]['fund_strategy']?>"> </div></td> </tr> Thank you visitor
×
×
  • 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.