Jump to content

aebstract

Members
  • Posts

    1,105
  • Joined

  • Last visited

Everything posted by aebstract

  1. I have a string that is unformatted and has a lot of commas in it. How would I add a \n linebreak after every 4th comma?
  2. I have this in my .htaccess RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([[:alnum:]_]+)/$ /index.php?page=$1 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2&var2=$3 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/([[:alnum:]]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2&var2=$3&var3=$4 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/([[:alnum:]]+)/([[:alnum:]]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2&var2=$3&var3=$4&var4=$5 [NC,L] When I go to: url.com/Category/Intakes/ everything works fine url.com/Category/Motor Mounts/ I get 404 Not Found I know it's something to do with the space, cause I can manually type in anything without a space and it will go, anything with a space and 404. I'm unsure how to fix the regex to fix it though.
  3. Hello, I am not sure this is the correct location for this, but I think it is.. should be, hopefully. We have an inventory control software that has a firebird sql based database, we have the odbc driver installed. This is on a windows server 2008 machine on our LAN. I need to access the information in that database from our web host so that I can use inventory counts on our website. I've got some very slight ideas of what to do but I have never done anything like this and for the most part am lost. Would really really appreciate any help I could get!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.