Forum: ColdFusion Jan 20th, 2009 |
| Replies: 1 Views: 1,467 Hi Guys! I have one question, Is there any free streaming server avaliable. if yes, please tell me.
I am currently hosted on Shared host. can i remotely access the free streaming server to work... |
Forum: ColdFusion Jan 18th, 2009 |
| Replies: 1 Views: 1,560 Hi, I am using a Flash Component provided in asfusion.com to upload files in Coldfusion. I used in my flash forms exactly the same way as it is defined in the focumentation as;
<cfformitem... |
Forum: ColdFusion Jan 15th, 2009 |
| Replies: 0 Views: 851 Hi Guys, I am facing a very wired problem. i am building a website which toggle between the modes.
1. html forms
2. flash forms
it works in all browsers except mozilla. the default i have set... |
Forum: PHP Jun 5th, 2007 |
| Replies: 1 Views: 858 i have also using he $cart script as:
<?php
if(!session_is_registered("cart"))
{
$cart=array();
session_register("cart");
}
?> |
Forum: PHP Jun 5th, 2007 |
| Replies: 1 Views: 858 hi, i had a problem with my cart values, i am doing like this
choose product and select the value of quantity and then clickic the submit button of add to cart as:
it goes as :
... |
Forum: ColdFusion Jun 5th, 2007 |
| Replies: 1 Views: 2,172 well you need to code the next/prev for this and call the query in theat code.. |
Forum: ColdFusion Jun 5th, 2007 |
| Replies: 1 Views: 2,168 i think the best idea is to store links in databse of images and images in the folder.
also the method of storing images is not good advantage, i had venver into direct image storage but i think... |
Forum: ColdFusion Jun 5th, 2007 |
| Replies: 1 Views: 2,519 are you calling the all code from one page or cfc page is different from the output page,
if so then you need to invoke the cfc in your cfm template by using the cfinvoke or cfobject tag |
Forum: PHP Jun 4th, 2007 |
| Replies: 8 Views: 1,219 here it is what i am trying to do?
<?php
$query1 = "SELECT * FROM catalog";
$result1 = mysql_query($query1);
while ($row = mysql_fetch_array($result1))
{
print ("<tr><td><a... |
Forum: PHP Jun 4th, 2007 |
| Replies: 8 Views: 1,219 well here is what is caused as an error:
$q2 = "SELECT * FROM catalog WHERE id='$p_id'";
$r2 = mysql_query($q2);
$p_name = mysql_result($r2, 0, "p_name");
now the error is:
Warning:... |
Forum: PHP Jun 3rd, 2007 |
| Replies: 8 Views: 1,219 the id passed is the primary key of table quite obious it is int value. also you specified the / in the above code of mine, i changed it but it does not work, you said
what is $p_id a number or a... |
Forum: PHP Jun 3rd, 2007 |
| Replies: 8 Views: 1,219 i started the application to build upon and came to an error, i tried to figure it out but through different procedure here is what i am calling:
print ("<tr><td><a href=morder.php");
print... |