
NurAzije
Members-
Content Count
58 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout NurAzije
-
Rank
Newbie
- Birthday 02/26/1983
Previous Fields
-
Languages
PHP, WhizBase, JS, HTML, CSS, C#
Contact Methods
-
Website URL
http://www.aster-development.com
-
ICQ
0
-
Can you please write the solution so others can make use of it
-
You can use this link to do that:http://www.stripegenerator.com/
-
You do not have META TAGS for SEO, and I think it is better for SEO to have multiple pages not all in one page. Do not forget the title tags and HTML validation.
-
div visibility changing instead of javascript vars
NurAzije replied to dubesinhower's topic in JavaScript
do not use variables, instead use DIV width style display:none; for example: <div style="display:none;" id="computernetworking">I am currently going to school for Computer Networking Technology at MCC in Connecticut. I've always been fascinated with how computers are able to communicate with each other; whether it's over the Internet or over a Local Area Network.</div> This will be indexed but it will not be visible on the page. On the image you use onclick='document.getElementById('computernetworking').style.display='';' for showing it and onclick='document.getElementById( -
Can you give us a link to the code?
-
setting element's width by using an other element's
NurAzije replied to villermen's topic in JavaScript
I think you need to use .offsetWidth instead of .width. -
Try this:http://bytes.com/topic/asp-classic/answers...ld-current-date
-
If you know PHP then try Perl, it is very powerful and similar to PHP syntax.
-
Here some more info:http://www.ibm.com/developerworks/library/j-jtp01274.htmlhttp://www.javaworld.com/javaworld/jw-08-1996/jw-08-gc.html
-
Use this code to catch errors in future:<?function logging_function($msg, $lvl, $email) { /* this is just a function I use to customize my logging. It is in one of my general include files. $msg is the error message $lvl is an arbitrary error level I assign for search purposes $email is t/f indicating if it should send an email alert as well */ error_log("L$lvl:$msg"); if ($email) { // send mail about the error }} $query="SELECT * FROM MyTable";if (!($result=mysql_query($query))) { $err=mysql_error(); $errnum=mysql_errno(); logging_function("MySQL error $errnum ($err) in
-
You can do it with CSS and some images, here are some tutorials for that:http://articles.sitepoint.com/article/css-...rs-boxes-curveshttp://www.devwebpro.com/25-rounded-corner...iques-with-css/
-
Here is a good convertor I use:http://www.miksoft.net/and it is free.
-
I did not understand everything, but why you do not use sessions? If they are on the same domain?
-
Here some functions which can help you:http://php.net/manual/en/function.file-get-contents.php (to get the content from the file)http://www.php.net/manual/en/function.preg-match-all.php (to extract the title tag and the text)http://www.php.net/manual/en/function.strip-tags.php (to clean the text from any HTML or JS)http://www.php.net/manual/en/function.substr.php (Return a part of the text)