Archive for October, 2008

Where can I find or make an email spoofer or php spoof form?

php
VBc0d3rnoob asked:

I am looking for a email spoofer or a code and how to use it through php on spoofing emails. Any help? It’s not used for any illegal activity.

Marilyn

Tags: , , , ,

Friday, October 31st, 2008 PHP Code 1 Comment

What should i do with the Geek Squad MRI Source Code?

source code
Masrad asked:


I recently got my hands on the source code for Geek Squads MRI Source code from a friend who helped make it, anyways what should/can I do with it?

Mildred

Tags: , , ,

Wednesday, October 29th, 2008 Code Questions 1 Comment

How to use PHP script and show Japanese characters ?

php
Francisco asked:

I used echo and it doesn’t work

I use varbinary field to store the japanese characters. It saved well, but the php doesn’t work.

Francisco

Tags: , ,

Sunday, October 26th, 2008 PHP Code 1 Comment

How to code a simple php dynamic dropdown form feild from mysql?

php
techgeek asked:

I been struggling with this all morning.

I am tiring to create a dynamic form field that uses data from a myself database but cannot seem to get it to work.
Anyone know how to code a simple php code for a single dropdown field form that pulls data from a table field on a mysql database.

Timothy

Tags: , , , ,

Sunday, October 26th, 2008 PHP Code 3 Comments

Does any know how to get the source code from Konsole?

source code
kernel_panic asked:


I need to get the source code for Konsole. I searched all over Google to try to find it but I can’t. Can someone tell me how to get it. Thanks!

Jonathan

Tags: , ,

Thursday, October 23rd, 2008 Code Questions 1 Comment

How do I install php 5 on my yahoo website?

php
Question asked:

yahoo is my web host, and they have a tool that installs php but it is php 4.3

I just downloaded the php 5 folder and extracted the whole thing on my hard drive, can someone please tell me what I need to do nexT?

Joel

Tags: , , , ,

Wednesday, October 22nd, 2008 PHP Code 3 Comments

How can i Decrypt the source code of Linux?

source code
Susan M asked:


If Linux is open source any one can know where the password are stored and if they are encrypted any one can decrypt it using source code. I am only familiar with paragent.com . its an open source project and works well for our company.
Thanks in advance.
Shaun

Samantha

Tags: , , ,

Monday, October 20th, 2008 Code Questions 2 Comments

How do I obtain the source code of a Java applet?

source code
Maribel asked:


I desperately need to have a look at the source code of the Java applet on http://www.open.ou.nl/eyn/applets/magicsq.htm for a school project. I can’t find a way to download it though. I found out in the source code these few lines:

papplet code=MagischVierkantApplet.class align=baseline
width=793 height=581/applet/p

And I tried to do a save of the webpage. However, upon opening the MagischVierkantApplet.class that was saved together with the page in Notepad, I got a bunch of strange symbols instead.

I am at a loss as to what to do now.

Help!

Mario

Tags: , , ,

Monday, October 20th, 2008 Code Questions 2 Comments

need a vb source code to open an application program using a command button?

source code
kryptonite asked:


can u please provide me a source code to open an application program using a command button. i want to make a menu that can automatically open the programs such as notepad, word, excel and other shortcuts found on my desktop.
thank you in advance…

Lois

Tags: , , ,

Sunday, October 19th, 2008 Code Questions 2 Comments

Basics of Php

Jeremy Gislason asked:


Practical Uses of PHP

It almost goes without saying that you will want your business website to be compelling, interactive, and secure. All of these characteristics will make your website more effective at bringing in and keeping customers. But how to go about it in a way that is stable, cost-effective, and easy to manage? One popular solution is to use the server-side scripting language PHP to help you solve those problems.

What is PHP?

Created in 1995, PHP originally stood for “Personal Home Page”, however it is now generally understood to mean “PHP: Hypertext Preprocessor”. It was originally designed to create dynamic or more interactive web pages. It is a widely-used, open-source, general-purpose scripting language. PHP is a “high-level” language, meaning that it’s generally more human-friendly (and easier to learn) than other programming languages such as C, ASP or ASP.net.

PHP was originally designed for use in Web site development, but rapidly grew to become a much more robust language. PHP’s primary use is as an “embedded” scripting language, which means that the actual PHP code is embedded in HTML code. When used in this way, PHP enables your web server to process web pages before they’re displayed in the user’s web browser.

Benefits of PHP

PHP is popular because it can be embedded directly into HTML coding.

PHP can be used on all major operating systems and is supported on most web servers.

PHP’s main focus is development for the web, so it has a quick development time and can solve scenarios much quicker than some of the other web design languages.

The latest version of PHP is a very stable and mature language used for web programming much like Java and Microsoft C#.

It is open source so it is free!

Database: It is very easy to write simple scripts which allow your Web site to interact with a database.

Cross-Platform: Both the PHP engine and the PHP code can be used on almost any platform, making it extremely versatile.

Development Tools: You only need a text editor to work on PHP; you do not need any development environment or compilers.

What can you do with PHP?

PHP generally runs on a web server, taking PHP code as its input and creating Web pages as output, however you can also use it for command-line scripting and client-side GUI applications. PHP is an extremely versatile language which enables you to create high-end, stable Web sites with plenty of bells and whistles. Here are just a few of the things you can do with PHP:

Make HTML Web Forms

Store Information in Databases

Remember Web site visitors (cookies and sessions)

Work with Arrays

Work with Files (File Management and downloads)

Parsing and Generating XML (also useful for large quantities of products on e-commerce)

Check which browser your visitor is using

How does PHP Work?

As its name (”PHP: Hypertext Preprocessor”) suggests, PHP derives its power by “preprocessing” hypertext on the server side. This generally means that when the PHP script (saved as a .php file) runs on your web server, it performs the programmed actions, and returns HTML code that will then be sent back to your customer’s web browser. The PHP script itself is not included in the HTML that is sent to the browser, so the PHP code is invisible and secure to the user.

For example, let’s consider the following simple PHP statement. (This example is merely to show the basic syntax of PHP in action. Any detailed discussion of PHP code is beyond the scope of this article.)

In this statement, is the closing tag, and echo is a PHP instruction that tells PHP to output the text that follows it as plain HTML code. The PHP software processes the PHP statement and outputs the following:

Hello World

This is a regular HTML statement that is delivered to the user’s browser. The PHP statement itself is not delivered to the browser, so the user never sees any PHP statements.

Using PHP to Improve Your Website.

PHP has many capabilities features designed specifically for use in Web sites, including the following:

1. Securing Your Website.

PHP can be used to secure your website (or certain areas of your website) so that your customer must enter a valid username and password. This can be used to reward preferred customers and to build an exclusive “membership” component of your business.

2. Working with Web Forms.

PHP can display an HTML form and process the information that the user types in. This can be an excellent way to learn more about your customers by asking them to provide profile information, and to collect information about their specific interests.

3. Communicate with Your Databases.

PHP is particularly adept at interacting with your databases, and storing information from the user or retrieving information that is displayed to the user. PHP handles connecting to the database and communicating with it, so it’s not necessary to know all of the technical details for connecting to or exchanging messages with the database. You tell PHP the name of the database and where it is, and PHP handles the details. All major databases are currently supported by PHP.

4. Customer Loyalty Functions.

You can also use PHP to create a number of different functionalities on your website that will further help you to build customer loyalty, including interactive polls, a guestbook, and a message board.

The popularity of PHP continues to grow rapidly because it has many advantages over other technical solutions. PHP is fast (because it’s embedded in the HTML code, the time to process and load a Web page is relatively short), PHP is free (it is open-source software), and PHP is versatile (is runs on a wide variety of operating systems, including Windows, Mac OS, Linux, and most Unix variants).

Perhaps most importantly, PHP is a very well-established language. There are many user-run Internet communities that make very large amounts of information (and scripts) available. With so much experience behind it, using PHP for certain dynamic features can be a cost-effective and low-hassle way of increasing the stability of your website.



Ruben

Tags: , , , ,

Sunday, October 19th, 2008 Uncategorized No Comments