Archive for April, 2010
Investing During a Recession – Learning Forex Trading
Foreign Exchange Trading, or Forex Trading, is trading currencies from around the world against each other, buying and selling to make a profit. Trading can be done through a broker or a market. Two of the biggest benefits of Forex trading are that you can trade any time of the day. So long as there is a market open somewhere in the world, you can do business. It is a 24 hour revolving door of currency. The next biggest benefit is a term called Leverage. This means that if you were trading on a ratio of 50:1, you could buy and sell currencies for $50,000, even if you only had $1,000 in your account. This attraction to work with large sums of money is what draws most beginners into the business.
Learning to read a Forex Trading Chart is a bit more difficult than researching a ticker symbol on the stock market. It can start off as challenge, but if you are interested in the profitable business of Forex Trading, learning to read charts are essential. You can change the setting of charts to make it is easier for you to read and understand, depending on the type of program you are using.
Forex trading has gained so much popularity among investors (old and new alike) that it is arguably considered more profitable and reliable than trading on stocks and bonds. Staying afloat of world affairs and financial trends of other currencies is essential to maintaining a valuable Forex portfolio. The opportunities for large profits are vast, but, like every investment, there are also just as many opportunities for loss. As a seasoned counselor, I always advise my clients to begin their investment strategies by first investing in high profile tools and guides to get started.
To learn more about Forex Trading and find the tools you needed to get started, see the recommendations page of my website http://www.dianathecreditcounselor.com/index.php?p=1_5_Recommendations. Here you will find everything you need to get started on the road to success.
And as always, I wish you the best of luck on your business endeavors and may your financial future be filled with satisfaction.
Sincerely,
Diana E. Jones
Credit Counselor
Diana E. Jones
http://www.articlesbase.com/wealth-building-articles/investing-during-a-recession-learning-forex-trading-751237.html
How to make database connection in php?
I have the idea we want connect the php coding to the database by using the Oracle program will used connect the php to database
By using the Oracle program we connect the PHP into database. The oracle code is used to connect all the php, Asp, Jsp.net.
how to connect oracle by thin client by using php program?
how to connect oracle by thin client by using php program?
help me plz…
Oracle guys have made great push towards PHP (http://www.oracle.com/technology/tech/php/index.html).
I want to point you to the free book they give on their site (http://www.oracle.com/technology/tech/php/underground-php-oracle-manual.html). They promise:
"This book is aimed at PHP programmers who are developing applications for an Oracle database. It
bridges the gap between the many PHP and the many Oracle books available. It shows how to use the PHP
scripting language with the Oracle database, from installation to using them together efficiently."
I think you’ll find explanation of most of your Oracle/PHP problems there.
PHP PROGRAMMING FORM DISPLAY URGENT HELP NEEDED?
Hey everyone I have been having this problem all I want to do is query the database then put my variables into a form for example
Select size<br />
<select id=’ldkdk’ onmousedown=’show(this.value)’>
<option value=’$show’>$jjsjs</option>
</select>
<input type=’button’ onClick =’ksksk(jksjsks)’ >
<input type=’text’ id=’data’ size=’20′>
</form>
I am very annoyed as every time i put the variable into the form it turns into two or three forms depending on what data is chosen from the database and all i want is one form with an option to pick a something please can some one help me? I have already tried to exlode the variable but its not working
$qursize = "SELECT * FROM size WHERE caps = ‘$img’";
$resize = mysql_query($qursize) or die(mysql_error());
while($rs = mysql_fetch_array($resize))
{
$size = $rs[size];
$show = "$img,$size,";
$expls = explode(" ", $size);
echo"
<head>
<script type=’text/javascript’ src=’call_cart.js’></script>
<script type=’text/javascript’ src=’call_size.js’></script>
</head>
<body>
<div id=’outofstock’></div>
<form>
Select size<br />
<select id=’sizel’ onmousedown=’showstock(this.value)’>
<option value=’$show’>$expls[0]</option>
<option value=’$show’>$expls[1]</option>
<option value=’$show’>$expls[2]</option>
<option value=’$show’>$expls[3]</option>
<option value=’$show’>$expls[4]</option>
</select>
<input type=’button’ onClick =’showUser(sizel.value)’ >
<input type=’text’ id=’data’ size=’20′>
</form>
OR
$qursize = "SELECT * FROM size WHERE caps = ‘$img’";
$resize = mysql_query($qursize) or die(mysql_error());
while($rs = mysql_fetch_array($resize))
{
$size = $rs[size];
$show = "$img,$size,";
echo"
<head>
<script type=’text/javascript’ src=’call_cart.js’></script>
<script type=’text/javascript’ src=’call_size.js’></script>
</head>
<body>
<div id=’outofstock’></div>
<form>
Select size<br />
<select id=’sizel’ onmousedown=’showstock(this.value)’>
<option value=’$show’>$size</option>
</select>
<input type=’button’ onClick =’showUser(sizel.value)’ >
<input type=’text’ id=’data’ size=’20′>
</form>
and infact i am having a problem with the html form part of my php script itis with the display!
Your problem is caused by having it all inside the while loop. Also if your only calling data from one row you do not need a loop.
$row = mysql_fetch_array(mysql_query("SELECT * FROM size WHERE caps = ‘$img’"));
$size = $row[size];
$expls = explode(" ", $size);
echo"
<html>
<head>
<script type=’text/javascript’ src=’call_cart.js’></script>
<script type=’text/javascript’ src=’call_size.js’></script>
</head>
<body>
<div id=’outofstock’></div>
<form> Select size
<select id=’sizel’ onmousedown=’showstock(this.value)’>
<option value=’$show’>$expls[0]</option>
<option value=’$show’>$expls[1]</option>
<option value=’$show’>$expls[2]</option>
<option value=’$show’>$expls[3]</option>
<option value=’$show’>$expls[4]</option>
</select>
<input type=’button’ onClick =’showUser(sizel.value)’ >
<input type=’text’ id=’data’ size=’20′>
</form>
</body>
</html>