April 28th, 2010 |
xumi |
Question:
I’m having trouble with the following WHERE clause;
WHERE CONVERT(varchar, SessionDateTime, 101) = CONVERT(varchar, #tmdate2#, 101)
The value of tmdate2 is “04/23/2010″ and the value of SessionDateTime is “4/23/2010 8:37:31″.
I generate tmdate2 with the following;
<cfset tmdate2=”#dateformat(DateOfCall,”mm/dd/yyyy hh:mm:ss”)#”>
I just added the time to the end of it and get the following error;
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server Driver][SQL [...]
April 28th, 2010 |
xumi |
Question:
When I run the Browser Compatibility check on a web page I’m developing, a few IE6 bugs turn up. How do I tell DW to ignore IE6 bugs?
Solution:
Hi jdana,
You can change the Browser Compatibility Settings by clicking the Check Page button on the Document toolbar and selecting Settings. From there you can set which browsers [...]
April 28th, 2010 |
xumi |
Question:
Do you recommend some tools that we can do the same website as http://www.inside.com.cy/magazine2/ ?
Solution:
Man… That one is really pricey… Not sure why…
How about this one???
http://www.flashloaded.com/flashcomponents/pageflipper/
CyanBlue
April 28th, 2010 |
xumi |
Question:
I am trying to create a 3 column table (or something with the same effect) which contains the main content in the middle (2nd) column. The 1st and 3rd columns are thin to use for advertising.
I need the middle (2nd) column to always have a width of 980px and show in the centre of the [...]
April 28th, 2010 |
xumi |
Question:
I am using nested <div> statements where the parent is set position:absolute, and the child position:relative.
Now I have 6 new module positions (with the left reflecting the look of the right side) and the child <div>s basically reflecting each other code wise.
I can’t figure out why the bottom two modules don’t space 30px from the [...]
April 27th, 2010 |
xumi |
Question:
I have a form my users fill out that write to a MySQL DB. It also captures their IP and places it in a field called IP.
When I query this information into an html page how can I display the results as ****.****.****.XXXX
I only want the last octect of the address to display on the [...]
April 27th, 2010 |
xumi |
Question:
hello there,
I would like to know how can I fix the dash in some title names
from
[book] – A Christmas Carol-(65325)
to
[book] – A Christmas Carol – (65325)
if it finds a dash touching a char in the left or in the right then add a space..
Solution:
This version will also work for this case I believe:
[book] – A [...]
April 27th, 2010 |
xumi |
Question:
I’m uploading photos in a form, then edit, and upload again, but shows the same photo until I refresh the page. Everything I find for pragma no-cache is for IE 4 or 5? Whats the deal?
How can I have my page show the newest image that I most recently uploaded? Is there a way to [...]
April 25th, 2010 |
xumi |
Question:
I want to set this equal to set
$productid
equal to
$pi[productid]
$pi[productid]
is a number
does it need double quotes around it, does it need single quotes… what is the differenc
Solution:
if product is is NOT a variable, then you can use either double quotes or apostrophes. So:
$productid = $pi['productid'];
OR
$productid = $pi["productid"];
will set the same value in $productid.
If your productid was [...]
April 25th, 2010 |
xumi |
Question:
Hi Guys,
I hope I can explain this clearly, but it’s so complex and very challenging so I don’t blame you if you move on
.
I having a problem which baffels me. I’m trying to change dynamically generated user data with radio buttons ( R_status ).
But I’m not getting the correct values into the db. There are [...]