Jump to content

BinaryStar

Staff Alumni
  • Posts

    74
  • Joined

  • Last visited

    Never

About BinaryStar

Contact Methods

  • Website URL
    http://www.phraction.com

Profile Information

  • Gender
    Male
  • Location
    Bethlehem, PA

BinaryStar's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I would look at the level of professionalism you are trying to appeal to. If it is a just a personal site, do what you feel, but if you are putting this site on the web to be used as a community you might want to think about usability and a very nice crisp design. As of now if I found the site, I would not rely on any of the information on the site just by appearance alone.
  2. Another reason not to make your entire site AJAX oriented is SEO. How does a search engine follow your links? It won't, they don't spider JS links. I think AJAX has it's place but not to maintain a single page web site. Also what market are you going after? Professionals? I only ask because I think this type of thing would be good for a tech site but for me if I were going to your site for professionalism I may turn away. I think your overall design is nice and simple. Very easy to use. I would just watch using AJAX for your entire site. Also how would I bookmark a page?
  3. Couldn't you also just use stristr? If you are only looking for one string within another why not? You are not really matching a pattern but just s imple string. Just a suggestion.
  4. upgrade or enter them yourself in the XML, it is not that hard. BS
  5. You can also write a small script in your Apache INF file to forbid access to inc files. BS
  6. I have re-written my backend XML files in my configuration folder to view all inc and other files I see fit as php files. It is really easy to do, you just need to edit the XML files. BS
  7. You are going to have to go behind the scenes in your dreamweaver cofiguration files and set it up yourself. DWMX is semi-open source, with a lot of the program run by javascript and XML...open DWMX and go the help section and look up customizing dreamweaver, it is very powerful and fantastic, you can even set it to have people enter a password in order to use the program, if you are fluent with javascript... anyway you will have to hand-code this option in about 3 or 4 different XML files. One suggestion is before you make changes, make a backup of the original, because if you screw it up, the program will fail... BS
  8. Not sure if this will work but it is worth a try...just switch everything... You had: SELECT emails.*, members.* FROM emails INNER JOIN members ON emails.ID = members.ID ORDER BY members.lastname ASC Try: SELECT members.*, emails.* FROM members INNER JOIN emails ON members.ID = email.ID ORDER BY members.lastname ASC that might possibly do the trick... Let me know the outcome BS
  9. Have you gone behind the scenes and manipulated anything? DWMX is semi-open source and you can do so, but if you do you can created massive errors. If not open the file it says there is an error and check it out...can't hurt any, all else fails reinstall your software...Also if you DL'ed a pirated version...those are always messed up...buy it if you are really going to use it...(if that is the case) BS
  10. Press F10 to bring up Code View or navigate to: Windows -> Others -> Code Inspector to open your code view. Now see the (6) icons at the top of the code inspector? Click the last one and see you will see a drop down box appear, check to see if "Syntax Highlighting" is checked, if not check it and you are done... Let me know if that helps any BS
  11. download phpMyAdmin....it will do all your exporting for you and you will have no more worries.. BS
  12. I am locking this thread due to a cross post...do not post the same question in more than one forum...thanks BS
  13. you can use char with a size of one.....there are probably other ones you could use but that is what i use.. BS
  14. that was very well put...just adding my 2 cents... dreamweaver can be a great tool, i use dreamweaver and zend studios, but try to do the actual scripting yourself, it will make you life easier...i use dreamweaver for ease of layout with graphics and my overall layouts of websites, it makes my life easier there, but they lack in language support and write bulky code for you. I will press F10 and type all my PHP by hand, becuase i need it a certain way and dreamweaver can\'t do that for me. I use for the color coding though.... If i am just writing pure php with no intergration of HTML i will use zend studios, i just love that program... but in short, download a trial copy from http://www.macromedia.com and see for yourself... Once other great thing a lot of people don\'t see about dreamweaver is you can bascially re-write a bunch of the actual program...the whole program depends on XML and javascript files to present itself to the user... If you don\'t like an option or need something, you can go hack it yourself, they give you access to all the files....very nice of them to do so... BS
  15. Go into your preferences and there is an option to tell dreamweaver not to re-write any code...
×
×
  • 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.