Ask Experts Questions for FREE Help !
Ask
    Idrees's Avatar
    Idrees Posts: 52, Reputation: 3
    Junior Member
     
    #1

    Dec 24, 2008, 02:10 AM
    Should I use asp.net or php
    I want to make a matrimonial website, I am not sure weather to use asp, asp.net or php. Webhosting service provider told me that there is a limit of 10 MB of database space if I use asp.net after that I'll have to pay more and I can use up to 500MB of database space if I use php as it is free. I want to use a dll file's program to break picture in different pieces. So please tell me can php read from a dll file and how can I decide that weather to use asp.net or php.
    StaticFX's Avatar
    StaticFX Posts: 943, Reputation: 74
    Senior Member
     
    #2

    Dec 24, 2008, 06:34 AM

    I think you can call a dll in php... it would be something like this.

    say your dll is called test.dll
    and say it has a function called show_words()

    here is the function:

    Public Function show_words() As String
    show_words = "Here are some words!!"
    End Function

    then in the php

    $obj = new COM("test.dll");
    $output=$obj->show_words();

    echo $output;


    now I'm NOT positive... a php expert would need to verify this... but I think I have seen it done like that.
    Idrees's Avatar
    Idrees Posts: 52, Reputation: 3
    Junior Member
     
    #3

    Jan 1, 2009, 01:11 AM
    Thank you very much for your answer. But I also want advice from you that whether I should make my website in php or asp or asp.net. Please advice me.
    StaticFX's Avatar
    StaticFX Posts: 943, Reputation: 74
    Senior Member
     
    #4

    Jan 2, 2009, 06:44 AM

    I think its really comes down to which you are more comfortable working with. Both have pluses and minuses.

    I think if you really want to use dll's then I would go with asp.net.

Not your question? Ask your question View similar questions

 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.



View more questions Search