- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 2
12 Posted Topics
Re: ColdFusion/Oracle Web Developer Requirements: The following are the Basic Qualifications for this position: Competent at creating/maintaining data driven web applications and web sites. Strong experience with ColdFusion (CF Builder), SQL, JavaScript, CSS, JQuery, and Oracle (or other enterprise database). Familiarity with Flex 3+, MS Windows operating systems, and integration with … | |
| |
Re: Exclude a category displaying under posts: <?php foreach((get_the_category()) as $category) { if ($category->cat_name != 'uncategorized') { echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> '; } } ?> | |
Re: Code for reading file: <?php $file = fopen("members.txt", "r"); $members = array(); while (!feof($file)) { $members[] = fgets($file); } fclose($file); var_dump($members); ?> The function returns the following values: int strcmp ($string1, $string2); Returns < 0 if string1 is less than string2. Returns > 0 if string1 is greater than string2. … | |
Re: Attempts to Fix: Installed the Win7 admin pack Uninstalled/reinstalled all hardware drivers Verified Active Directory DNS settings (Vista works relatively well on the same network) Reset all TCP/IP settings on all adapters using the netsh commands to do so Disabled ipv6 on all adapters Disable wifi adapter while on work … | |
![]() | Re: The pseudocode: def removeSpaces (str): src = pointer to str dst = src while not end-of-string marker at src: if character at src is not space: set character at dst to be character at src increment dst increment src place end-of-string marker at dst |
Re: not possible | |
Re: I found the answer. This is the easiest way to do that. d_now = date() d = split(DateAdd("d",1,d_now),"/") s = d(2) & "-" & d(0) & "-" & d(1) | |
Re: Installing and Configuring Windows MySQL ODBC Drivers The following must be done on your own PC. If you are using MS Access 2000, it may be necessary to patch your MS Jet 4.0 database engine before continuing. See the following, for more information. MS Product Support Services: Jet 4.0 Bug … ![]() | |
Re: i would mention you to read Kamasutra :P | |
Re: $str = '[cat=[0=php,script=[js]],id=4,foo=bar,....]'; $char = str_split($str); $level=0; $newstring = ''; foreach($char as $s) { if($s == '[')$level++; if($s == ']')$level--; if($s == ',' && $level == 1)$s = '_-_'; $newstring .= $s; } echo $newstring ![]() | |
Re: sweety engineer can you help me with this problem , if you have coded????? |
The End.